2016-07-10 15:31:28 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2019-12-10 08:59:27 -06:00
|
|
|
use App\Providers\RouteServiceProvider;
|
2016-07-10 15:31:28 -05:00
|
|
|
use Illuminate\Foundation\Auth\ResetsPasswords;
|
|
|
|
|
|
|
|
|
|
class ResetPasswordController 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;
|
|
|
|
|
|
2016-10-16 03:44:24 +03:00
|
|
|
/**
|
|
|
|
|
* Where to redirect users after resetting their password.
|
|
|
|
|
*
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
2019-12-10 08:59:27 -06:00
|
|
|
protected $redirectTo = RouteServiceProvider::HOME;
|
2016-07-10 15:31:28 -05:00
|
|
|
}
|