App\Http\Controllers\Frontend\Auth\ResetPasswordController::showResetForm PHP Method

showResetForm() public method

If no token is present, display the link request form.
public showResetForm ( string | null $token = null ) : Illuminate\Http\Response
$token string | null
return Illuminate\Http\Response
    public function showResetForm($token = null)
    {
        return view('frontend.auth.passwords.reset')->withToken($token)->withEmail($this->user->getEmailForPasswordToken($token));
    }