64 lines
1.9 KiB
PHP
64 lines
1.9 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Password;
|
|
use Livewire\Attributes\Layout;
|
|
use Livewire\Volt\Component;
|
|
|
|
new #[Layout('layouts.guest')] class extends Component
|
|
{
|
|
public string $email = '';
|
|
|
|
/**
|
|
* Send a password reset link to the provided email address.
|
|
*/
|
|
public function sendPasswordResetLink(): void
|
|
{
|
|
$this->validate([
|
|
'email' => ['required', 'string', 'email'],
|
|
]);
|
|
|
|
// We will send the password reset link to this user. Once we have attempted
|
|
// to send the link, we will examine the response then see the message we
|
|
// need to show to the user. Finally, we'll send out a proper response.
|
|
$status = Password::sendResetLink(
|
|
$this->only('email')
|
|
);
|
|
|
|
if ($status != Password::RESET_LINK_SENT) {
|
|
$this->addError('email', __($status));
|
|
|
|
return;
|
|
}
|
|
|
|
$this->reset('email');
|
|
|
|
session()->flash('status', __($status));
|
|
}
|
|
}; ?>
|
|
|
|
<div>
|
|
<h2 class="text-xl font-semibold text-t1 mb-1">Reset password</h2>
|
|
<p class="text-sm text-t2 mb-6">Enter your email and we'll send you a reset link.</p>
|
|
|
|
<!-- Session Status -->
|
|
<x-auth-session-status class="mb-4" :status="session('status')" />
|
|
|
|
<form wire:submit="sendPasswordResetLink">
|
|
<!-- Email Address -->
|
|
<div>
|
|
<x-input-label for="email" :value="__('Email')" />
|
|
<x-text-input wire:model="email" id="email" type="email" name="email" required autofocus />
|
|
<x-input-error :messages="$errors->get('email')" />
|
|
</div>
|
|
|
|
<x-primary-button class="mt-6">
|
|
Send reset link
|
|
</x-primary-button>
|
|
</form>
|
|
|
|
<p class="mt-6 text-center text-sm text-t2">
|
|
Remembered it?
|
|
<a href="{{ route('login') }}" class="text-blue hover:underline" wire:navigate>Back to sign in</a>
|
|
</p>
|
|
</div>
|