forgot-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. {{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }}
  10. </div>
  11. <!-- Session Status -->
  12. <x-auth-session-status class="mb-4" :status="session('status')" />
  13. <!-- Validation Errors -->
  14. <x-auth-validation-errors class="mb-4" :errors="$errors" />
  15. <form method="POST" action="{{ route('password.email') }}">
  16. @csrf
  17. <!-- Email Address -->
  18. <div>
  19. <x-label for="email" :value="__('Email')" />
  20. <x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus />
  21. </div>
  22. <div class="flex items-center justify-end mt-4">
  23. <x-button>
  24. {{ __('Email Password Reset Link') }}
  25. </x-button>
  26. </div>
  27. </form>
  28. </x-auth-card>
  29. </x-guest-layout>