'E-Mail-Adresse bestätigen', 'eyebrow' => 'Konto-Verifizierung', 'showFromBanner' => false])] class extends Component { /** * Send an email verification notification to the user. */ public function sendVerification(): void { if (Auth::user()->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); } }; ?>
Wir haben Ihnen einen Bestätigungslink an {{ Auth::user()?->email }} gesendet. Bitte öffnen Sie die Mail und klicken Sie auf den Link, um Ihre E-Mail-Adresse zu bestätigen.
@if (session('status') === 'verification-link-sent')