confirm-password.blade.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <x-guest-layout>
  2. <x-auth-card>
  3. <x-slot name="logo">
  4. <a href="/">
  5. <x-application-logo class="w-20 h-20 fill-current text-burnt hover:text-yelmax" />
  6. </a>
  7. </x-slot>
  8. <div class="mb-4 text-sm text-crayola">
  9. {{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
  10. </div>
  11. <!-- Validation Errors -->
  12. <x-auth-validation-errors class="mb-4" :errors="$errors" />
  13. <form method="POST" action="{{ route('password.confirm') }}">
  14. @csrf
  15. <!-- Password -->
  16. <div>
  17. <x-label for="password" :value="__('Password')" />
  18. <x-input id="password" class="block mt-1 w-full"
  19. type="password"
  20. name="password"
  21. required autocomplete="current-password" />
  22. </div>
  23. <div class="flex justify-end mt-4">
  24. <x-button>
  25. {{ __('Confirm') }}
  26. </x-button>
  27. </div>
  28. </form>
  29. </x-auth-card>
  30. </x-guest-layout>