validate(); 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->redirect( session('url.intended', RouteServiceProvider::HOME), navigate: true ); } }; ?>
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
{{ __('Confirm') }}