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\ResetsPasswords;
/**
* Class PasswordController
*
* @package Arcanesoft\Auth\Http\Controllers\Front
* @author ARCANEDEV <[email protected]>
*/
class PasswordController extends Controller
{
/* ------------------------------------------------------------------------------------------------
| Traits
| ------------------------------------------------------------------------------------------------
use ResetsPasswords;
| Constructor
* Create a new password controller instance.
public function __construct()
parent::__construct();
$this->middleware('guest');
}
| Main Functions
* Display the form to request a password reset link.
* @return \Illuminate\Http\Response
public function getEmail()
return view('auth::public.reset');