31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<x-layouts::auth>
|
|
<div class="flex flex-col gap-6">
|
|
<x-auth-header :title="__('Forgot password')" :description="__('Enter your email to receive a password reset link')" />
|
|
|
|
<!-- Session Status -->
|
|
<x-auth-session-status class="text-center" :status="session('status')" />
|
|
|
|
<form method="POST" action="{{ route('password.email') }}" class="flex flex-col gap-6">
|
|
@csrf
|
|
|
|
<!-- Email Address -->
|
|
<x-input
|
|
name="email"
|
|
label="{{ __('Email Address') }}"
|
|
type="email"
|
|
required
|
|
autofocus
|
|
placeholder="email@example.com"
|
|
icon="o-envelope"
|
|
/>
|
|
|
|
<x-button type="submit" label="{{ __('Email password reset link') }}" class="btn-primary w-full" data-test="email-password-reset-link-button" />
|
|
</form>
|
|
|
|
<div class="space-x-1 rtl:space-x-reverse text-center text-sm opacity-60">
|
|
<span>{{ __('Or, return to') }}</span>
|
|
<a href="{{ route('login') }}" class="link link-primary" wire:navigate>{{ __('log in') }}</a>
|
|
</div>
|
|
</div>
|
|
</x-layouts::auth>
|