How to disable RequestPasswordReset but allow ResetPassword?

I would like to use the built-in ResetPassword class of Filament. However, I do not want my users to be able to request a password reset themselves. They should contact their admin for that, he can then generate a password request which gets sent to the user.

How would I achieve this in Filament? I tried something like this: ->passwordReset(requestAction: null, resetAction: ResetPassword::class)
Solution
Easiest way would be create your own custom password reset.. unless you create a PR to filament core to include (optional) what you like
Was this page helpful?