Route [password.reset] not defined.

Hi guys,

I had a Jetstream app and refactored it to Filament. Today I dropped Jetstream / Fortify and when I try to send a password reset link it says

Route [password.reset] not defined.


class ResetPasswordAction extends Action
{
    protected function setUp(): void
    {
        $this
            ->name('reset-password')
            ->label(__('Passwort zurücksetzen'))
            ->icon('heroicon-o-key')
            ->requiresConfirmation()
            ->action(fn (Hotel|User $record, array $data) => $record->sendPasswordResetNotification(Str::random()))
            ->color('gray')
            ->after(fn () => Notification::make()
                ->title(__('Link wurde versandt'))
                ->body(__('Der Link zum Zurücksetzen des Passworts wurde versandt.'))
                ->success()
                ->send()
            );
    }
}
Was this page helpful?