App\Http\Controllers\PasswordsController::getReset PHP Method

getReset() public method

Display the password reset view for the given token.
public getReset ( null $token = null ) : Illuminate\Contracts\View\Factory | Illuminate\View\View
$token null
return Illuminate\Contracts\View\Factory | Illuminate\View\View
    public function getReset($token = null)
    {
        if (is_null($token) or strlen($token) != 64) {
            throw new \Symfony\Component\HttpKernel\Exception\NotFoundHttpException();
        }
        return view('passwords.reset', compact('token'));
    }