hasVerifiedEmail()) { $this->redirectIntended(default: route('dashboard', absolute: false), navigate: true); return; } Auth::user()->sendEmailVerificationNotification(); Session::flash('status', 'verification-link-sent'); } /** * Log the current user out of the application. */ public function logout(Logout $logout): void { $logout(); $this->redirect('/', navigate: true); } }; ?>
{{ __('Please verify your email address by clicking on the link we just emailed to you.') }}
@if (session('status') == 'verification-link-sent')
{{ __('A new verification link has been sent to the email address you provided during registration.') }}
@endif
{{ __('Resend verification email') }}