Mercurial > borealpoint
diff resources/views/auth/confirm-password.blade.php @ 0:9d7dcd54c677
Initial Commit and package setup
| author | luka |
|---|---|
| date | Sat, 23 Aug 2025 22:20:51 -0400 |
| parents | |
| children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/resources/views/auth/confirm-password.blade.php Sat Aug 23 22:20:51 2025 -0400 @@ -0,0 +1,27 @@ +<x-guest-layout> + <div class="mb-4 text-muted"> + {{ __('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 class="mb-3"> + <x-input-label for="password" :value="__('Password')" /> + + <x-text-input id="password" class="form-control" + type="password" + name="password" + required autocomplete="current-password" /> + + <x-input-error :messages="$errors->get('password')" class="mt-2" /> + </div> + + <div class="d-flex justify-content-end mt-4"> + <x-primary-button> + {{ __('Confirm') }} + </x-primary-button> + </div> + </form> +</x-guest-layout>
