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

31 lines
595 B
PHP
Executable File

<?php
namespace App\Http\Controllers\Auth;
use App\Contracts\Controller;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
/**
* Class ForgotPasswordController
*/
class ForgotPasswordController extends Controller
{
use SendsPasswordResetEmails;
/**
* ForgotPasswordController constructor.
*/
public function __construct()
{
$this->middleware('guest');
}
/**
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function showLinkRequestForm()
{
return view('auth.passwords.email');
}
}