for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Auth\Http\Controllers\Front;
use Arcanesoft\Auth\Bases\Controller;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
/**
* Class ForgotPasswordController
*
* @package Arcanesoft\Auth\Http\Controllers\Front
* @author ARCANEDEV <[email protected]>
*/
class ForgotPasswordController extends Controller
{
/* ------------------------------------------------------------------------------------------------
| Traits
| ------------------------------------------------------------------------------------------------
use SendsPasswordResetEmails;
| Constructor
* Create a new controller instance.
public function __construct()
$this->middleware('guest');
}
| Main Functions
* Display the form to request a password reset link.
* @return \Illuminate\Http\Response
public function showLinkRequestForm()
return view('auth::public.passwords.email');