forgot-password.blade.php 1000 B

12345678910111213141516171819202122232425
  1. <x-guest-layout>
  2. <div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
  3. {{ __('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.') }}
  4. </div>
  5. <!-- Session Status -->
  6. <x-auth-session-status class="mb-4" :status="session('status')" />
  7. <form method="POST" action="{{ route('password.email') }}">
  8. @csrf
  9. <!-- Email Address -->
  10. <div>
  11. <x-input-label for="email" :value="__('Email')" />
  12. <x-text-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus />
  13. <x-input-error :messages="$errors->get('email')" class="mt-2" />
  14. </div>
  15. <div class="flex items-center justify-end mt-4">
  16. <x-primary-button>
  17. {{ __('Email Password Reset Link') }}
  18. </x-primary-button>
  19. </div>
  20. </form>
  21. </x-guest-layout>