mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 10:51:36 +00:00
32 lines
929 B
PHP
32 lines
929 B
PHP
<x-guest-layout>
|
|
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
|
|
{{ __("This is a secure area of the application. Please confirm your password before continuing.") }}
|
|
</div>
|
|
|
|
<form method="POST" action="{{ route("password.confirm") }}">
|
|
@csrf
|
|
|
|
<!-- Password -->
|
|
<div>
|
|
<x-input-label for="password" :value="__('Password')" />
|
|
|
|
<x-text-input
|
|
id="password"
|
|
class="mt-1 block w-full"
|
|
type="password"
|
|
name="password"
|
|
required
|
|
autocomplete="current-password"
|
|
/>
|
|
|
|
<x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
</div>
|
|
|
|
<div class="mt-4 flex justify-end">
|
|
<x-primary-button>
|
|
{{ __("Confirm") }}
|
|
</x-primary-button>
|
|
</div>
|
|
</form>
|
|
</x-guest-layout>
|