You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
981 B
29 lines
981 B
1 month ago
|
<x-guest-layout>
|
||
|
<x-jet-authentication-card>
|
||
|
<x-slot name="logo">
|
||
|
<x-jet-authentication-card-logo />
|
||
|
</x-slot>
|
||
|
|
||
|
<div class="mb-4 text-sm text-gray-600">
|
||
|
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
|
||
|
</div>
|
||
|
|
||
|
<x-jet-validation-errors class="mb-4" />
|
||
|
|
||
|
<form method="POST" action="{{ route('password.confirm') }}">
|
||
|
@csrf
|
||
|
|
||
|
<div>
|
||
|
<x-jet-label for="password" value="{{ __('Password') }}" />
|
||
|
<x-jet-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="current-password" autofocus />
|
||
|
</div>
|
||
|
|
||
|
<div class="flex justify-end mt-4">
|
||
|
<x-jet-button class="ml-4">
|
||
|
{{ __('Confirm') }}
|
||
|
</x-jet-button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</x-jet-authentication-card>
|
||
|
</x-guest-layout>
|