2017-06-09 02:28:26 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
|
|
|
|
|
|
|
class ForgotPasswordController extends Controller
|
|
|
|
{
|
|
|
|
use SendsPasswordResetEmails;
|
|
|
|
|
2018-02-21 12:33:09 +08:00
|
|
|
/**
|
|
|
|
* ForgotPasswordController constructor.
|
|
|
|
*/
|
2017-12-22 07:23:45 +08:00
|
|
|
public function __construct()
|
2017-08-02 07:40:05 +08:00
|
|
|
{
|
2017-12-22 07:23:45 +08:00
|
|
|
$this->middleware('guest');
|
2017-08-02 07:40:05 +08:00
|
|
|
}
|
|
|
|
|
2018-02-21 12:33:09 +08:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
|
|
*/
|
2017-12-22 07:23:45 +08:00
|
|
|
public function showLinkRequestForm()
|
2017-06-09 02:28:26 +08:00
|
|
|
{
|
2017-12-22 07:23:45 +08:00
|
|
|
return $this->view('auth.passwords.email');
|
2017-06-09 02:28:26 +08:00
|
|
|
}
|
|
|
|
}
|