forgot-password.blade.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. {{ __('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.') }}
  8. </div>
  9. @if (session('status'))
  10. <div class="mb-4 font-medium text-sm text-green-600">
  11. {{ session('status') }}
  12. </div>
  13. @endif
  14. <x-jet-validation-errors class="mb-4" />
  15. <form method="POST" action="{{ route('password.email') }}">
  16. @csrf
  17. <div class="block">
  18. <x-jet-label for="email" value="{{ __('Email') }}" />
  19. <x-jet-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus />
  20. </div>
  21. <div class="flex items-center justify-end mt-4">
  22. <x-jet-button>
  23. {{ __('Email Password Reset Link') }}
  24. </x-jet-button>
  25. </div>
  26. </form>
  27. </x-jet-authentication-card>
  28. </x-guest-layout>