'Passwort bestätigen', 'eyebrow' => 'Sicherheitsbereich', 'showFromBanner' => false])] class extends Component { public string $password = ''; /** * Confirm the current user's password. */ public function confirmPassword(): void { $this->validate([ 'password' => ['required', 'string'], ]); if (! Auth::guard('web')->validate([ 'email' => Auth::user()->email, 'password' => $this->password, ])) { throw ValidationException::withMessages([ 'password' => __('auth.password'), ]); } session(['auth.password_confirmed_at' => time()]); $this->redirectIntended(default: route('dashboard', absolute: false), navigate: true); } }; ?>

Dieser Bereich des Publisher-Hubs ist besonders geschützt. Bitte bestätigen Sie zur Sicherheit erneut Ihr Passwort, bevor Sie fortfahren.

@error('password')

{{ $message }}

@enderror