Skip to content

Commit

Permalink
Trying to fix: The route forgot-password could not be found #59
Browse files Browse the repository at this point in the history
  • Loading branch information
cawecoy authored Dec 6, 2024
1 parent bb05c83 commit 1ba98f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Livewire/Auth/Login.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ protected function getPasswordFormComponent(): Component
{
return TextInput::make('password')
->label(__('filament-panels::pages/auth/login.form.password.label'))
->hint(Filament::hasPasswordReset() ? new HtmlString(Blade::render('<x-filament::link href="/forgot-password"> {{ __(\'filament-panels::pages/auth/login.actions.request_password_reset.label\') }}</x-filament::link>')) : null)
->hint(Filament::hasPasswordReset() ? new HtmlString(Blade::render('<x-filament::link :href="filament()->getRequestPasswordResetUrl()"> {{ __(\'filament-panels::pages/auth/login.actions.request_password_reset.label\') }}</x-filament::link>')) : null)
->password()
->revealable(Filament::arePasswordsRevealable())
->autocomplete('current-password')
Expand Down

0 comments on commit 1ba98f0

Please sign in to comment.