FOSUserBundle change register form field names

603 Views Asked by At

I am developing an app using Symfony 2 and using FOSUserBundle. I would like to know if it is possible to define my own form with my own custom field names. I know the Symfony 2 Security Component allows you to map the field names for the login route but I don't know of a way to do so with the register form. I want to have fields like name, email instead of fos_user_registration_form[email] etc. Do I need to write a custom controller to handle the user registration or is there a configuration section in the firewall I can modify?

1

There are 1 best solutions below

1
On BEST ANSWER

In the FOSUserBundle configuration, set fos_user.registration.form.name value to null or empty string (FOSUserBundle configuration reference).

Also see this question: Symfony2 Form Component - creating fields without the forms name in the name attribute