mirror of
https://github.com/brufdev/many-notes.git
synced 2026-05-12 21:30:30 -05:00
26 lines
494 B
PHP
26 lines
494 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Livewire\Auth;
|
|
|
|
use App\Livewire\Forms\ForgotPasswordForm;
|
|
use Illuminate\Contracts\View\Factory;
|
|
use Illuminate\Contracts\View\View;
|
|
use Livewire\Component;
|
|
|
|
final class ForgotPassword extends Component
|
|
{
|
|
public ForgotPasswordForm $form;
|
|
|
|
public function send(): void
|
|
{
|
|
$this->form->sendPasswordResetLink();
|
|
}
|
|
|
|
public function render(): Factory|View
|
|
{
|
|
return view('livewire.auth.forgot-password');
|
|
}
|
|
}
|