2020-02-25 16:02:36 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
2015-07-08 03:34:58 -04:00
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2020-02-25 16:02:36 -05:00
|
|
|
use App\Providers\RouteServiceProvider;
|
2015-07-08 03:34:58 -04:00
|
|
|
use Illuminate\Foundation\Auth\ResetsPasswords;
|
|
|
|
|
2020-02-25 16:02:36 -05:00
|
|
|
class ResetPasswordController extends Controller
|
|
|
|
{
|
2015-07-08 03:34:58 -04: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;
|
|
|
|
|
2016-10-26 11:05:43 -04:00
|
|
|
/**
|
|
|
|
* Where to redirect users after resetting their password.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2020-02-25 16:02:36 -05:00
|
|
|
protected $redirectTo = RouteServiceProvider::HOME;
|
2015-07-08 03:34:58 -04:00
|
|
|
}
|