Customize Reset password page
How can i re customize forget password and reset password page
4 Replies
You can pass your own page class to any of the authentication features;
https://filamentphp.com/docs/3.x/panels/users#authentication-features
I can get the request page customised but not the reset page, how can i achieve this please?
I faced the same issue:
When attempting to override the password reset page (/password-reset/reset) in Filament v3, the ->passwordReset(ResetPassword::class) method does not work as expected. Instead of overriding the reset page, it overrides the password reset request form (/password-reset/request). Despite correctly registering the custom page in the panel provider, Filament still uses the default password reset page.
For me, the custom page only loads when the route is manually overridden in RouteServiceProvider.
Above, worked for me when trying to customize password reset page for "Jobseeker" panel.
Thats perfect thank you @Sukarat Luitel