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?
FOSUserBundle change register form field names
603 Views Asked by Vesselin Obreshkov At
1
In the FOSUserBundle configuration, set
fos_user.registration.form.name
value tonull
or empty string (FOSUserBundle configuration reference).Also see this question: Symfony2 Form Component - creating fields without the forms name in the name attribute