Files
im-demo-server/app/Http/Controllers/Auth/PasswordController.php

29 lines
724 B
PHP
Raw Normal View History

2014-11-24 13:59:40 -06:00
<?php namespace App\Http\Controllers\Auth;
2014-11-24 13:59:40 -06:00
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
2014-10-15 08:34:33 -05:00
class PasswordController extends Controller {
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset requests
| and uses a simple trait to include this behavior. You're free to
| explore this trait and override any methods you wish to tweak.
|
*/
use ResetsPasswords;
2014-11-29 14:11:26 -06:00
/**
* The path to send users after passwords are reset.
*
* @var string
*/
protected $redirectTo = '/home';
}