+ $user = $this->loginService->getLastLoginAttemptUser();
+
+ return view('auth.user-unconfirmed', ['user' => $user]);
+ }
+
+ /**
+ * Show the form for a user to provide their positive confirmation of their email.
+ */
+ public function showAcceptForm(string $token)
+ {
+ return view('auth.register-confirm-accept', ['token' => $token]);