2018-04-22 22:37:09 -04:00
|
|
|
<?php namespace App\Http\Controllers\Auth;
|
2015-07-08 03:34:58 -04:00
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2016-08-19 16:38:49 -04:00
|
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
2015-07-08 03:34:58 -04:00
|
|
|
|
2018-04-22 22:37:09 -04:00
|
|
|
class ForgotPasswordController extends Controller {
|
|
|
|
|
2015-07-08 03:34:58 -04:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Password Reset Controller
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2016-08-19 16:38:49 -04:00
|
|
|
| This controller is responsible for handling password reset emails and
|
|
|
|
| includes a trait which assists in sending these notifications from
|
|
|
|
| your application to your users. Feel free to explore this trait.
|
2015-07-08 03:34:58 -04:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-08-19 16:38:49 -04:00
|
|
|
use SendsPasswordResetEmails;
|
2015-07-08 03:34:58 -04:00
|
|
|
|
2016-01-27 22:19:27 -05:00
|
|
|
/**
|
2016-08-19 16:38:49 -04:00
|
|
|
* Create a new controller instance.
|
2015-07-08 03:34:58 -04:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('guest');
|
|
|
|
}
|
2018-04-22 22:37:09 -04:00
|
|
|
|
2015-07-08 03:34:58 -04:00
|
|
|
}
|