Novalidate isn't working on FOS user registration form
I overwrote the FOS UserBundle registration form and added the default options: 'attr'=> array('novalidate'=>'novalidate') as answered here (which seems like the right way to go) but for some strange reason the novalidated is added to a div right after the form instead of the form. FormType: <?php namespace AppBundle\Form\Type; use Symfony\Component\Form\FormBuilderInterface; use FOS\UserBundle\Form\Type\RegistrationFormType as BaseType; use Symfony\Component\OptionsResolver\OptionsResolverInterface; use AppBundle\Services\RolesHelper; class UserType extends BaseType { /** * @var RolesHelper *