2014-11-24 13:59:40 -06:00
|
|
|
<?php namespace App\Http\Controllers\Auth;
|
2014-10-11 22:46:51 -05:00
|
|
|
|
2014-11-24 13:59:40 -06:00
|
|
|
use App\Http\Controllers\Controller;
|
2014-11-29 13:55:38 -06:00
|
|
|
use Illuminate\Foundation\Auth\ResetsPasswords;
|
2014-10-11 22:46:51 -05:00
|
|
|
|
2014-10-15 08:34:33 -05:00
|
|
|
class PasswordController extends Controller {
|
2014-10-11 22:46:51 -05:00
|
|
|
|
2014-11-29 13:55:38 -06:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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-24 11:42:29 -06:00
|
|
|
|
2014-11-29 14:11:26 -06:00
|
|
|
/**
|
2014-11-29 16:57:46 -06:00
|
|
|
* Where to redirect after password reset.
|
2014-11-29 14:11:26 -06:00
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $redirectTo = '/home';
|
|
|
|
|
|
2014-10-11 22:46:51 -05:00
|
|
|
}
|