phpvms/app/Http/Controllers/Auth/ForgotPasswordController.php

31 lines
596 B
PHP
Raw Normal View History

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