confirm-password.blade.php 981 B

1234567891011121314151617181920212223242526272829
  1. <x-guest-layout>
  2. <x-jet-authentication-card>
  3. <x-slot name="logo">
  4. <x-jet-authentication-card-logo />
  5. </x-slot>
  6. <div class="mb-4 text-sm text-gray-600">
  7. {{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
  8. </div>
  9. <x-jet-validation-errors class="mb-4" />
  10. <form method="POST" action="{{ route('password.confirm') }}">
  11. @csrf
  12. <div>
  13. <x-jet-label for="password" value="{{ __('Password') }}" />
  14. <x-jet-input id="password" class="block mt-1 w-full" type="password" name="password" required autocomplete="current-password" autofocus />
  15. </div>
  16. <div class="flex justify-end mt-4">
  17. <x-jet-button class="ml-4">
  18. {{ __('Confirm') }}
  19. </x-jet-button>
  20. </div>
  21. </form>
  22. </x-jet-authentication-card>
  23. </x-guest-layout>