|
0
|
1 <x-guest-layout>
|
|
|
2 <div class="mb-4 text-muted">
|
|
|
3 {{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
|
|
|
4 </div>
|
|
|
5
|
|
|
6 <form method="POST" action="{{ route('password.confirm') }}">
|
|
|
7 @csrf
|
|
|
8
|
|
|
9 <!-- Password -->
|
|
|
10 <div class="mb-3">
|
|
|
11 <x-input-label for="password" :value="__('Password')" />
|
|
|
12
|
|
|
13 <x-text-input id="password" class="form-control"
|
|
|
14 type="password"
|
|
|
15 name="password"
|
|
|
16 required autocomplete="current-password" />
|
|
|
17
|
|
|
18 <x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
|
19 </div>
|
|
|
20
|
|
|
21 <div class="d-flex justify-content-end mt-4">
|
|
|
22 <x-primary-button>
|
|
|
23 {{ __('Confirm') }}
|
|
|
24 </x-primary-button>
|
|
|
25 </div>
|
|
|
26 </form>
|
|
|
27 </x-guest-layout>
|