User Set Password after registering User in the panel

Hello all,

I'm building a user resource that enables Admins to register users manually.

When an action is toggled to enable the login, the action triggers the Email Verification process:

app()->bind(
  \Illuminate\Auth\Listeners\SendEmailVerificationNotification::class,
  \Filament\Listeners\Auth\SendEmailVerificationNotification::class,
);
// Trigger the email verification process
event(new Registered($this->record));


Now what I would like to achieve is to enable the user to set a password when he clicks the verify email.

What would be your approach? I don't think fillament has anything under the hood ready for this after looking at the docs, but I may be wrong!

Thank you!
Was this page helpful?