cleanup and ensure forgot password functionality is working

This commit is contained in:
Nabeel Shahzad
2017-12-21 17:23:45 -06:00
parent 6c546b5094
commit 7fbe2f5e30
6 changed files with 22 additions and 71 deletions

View File

@@ -7,31 +7,15 @@ use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
class ForgotPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| 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.
|
*/
use SendsPasswordResetEmails;
public function __construct()
{
$this->middleware('guest');
}
public function showLinkRequestForm()
{
return $this->view('auth.passwords.email');
}
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest');
}
}