Custom Registration
Good day, how can I override the user registration? I need to add another field for my users. Thanks for the help.
10 Replies
Hello! I know this isn't my question but I have the same question. I'm not looking for multi-tenacy, I want to add like "Location" and a few other fields to the normal user registration page but can't seem to find anything to customize it. Thank you.
Maybe I misunderstood the original question anyway. This is probably more relevant:
https://filamentphp.com/docs/3.x/panels/users#customizing-the-authentication-features
You can customize the
Filament\Pages\Auth\Register
page classnoted with thanks Patrick!
Hello @pboivin , I tried to create a custom Registration class and load it to the ->registration() in my Filament Provider. Attached is my sample code from my Registration class, It was able to load the form but when I submitted the form there was an error "No property found for validation: [last_name]" Thank You
How bout You @tallgeese , were you able to make it work?? Thank You
Hi, Update on this, I was able to make it work now. forgot to add ->statePath('data'); Thanks guys
but the next question is how I was able to edit the design of the registration page. making it a little wider π
Another option would be to use custom CSS
Thanks, will try this