confirm-password.blade.php 905 B

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