I\'ve got two forms in a same page.
My problem is when I tried to submit a form, it\'s like it tried to submit the second form below in the page as well.
As
This is how I handle them on my controller :
return $this->render('SgaDemandeBundle:Demande:suivi_avancement.html.twig',
array('form' => $form->createView(),
........
'update' => $formModification->createView()));
This is the html for the second form :
This is my twig rendered :
{{ form_errors(form) }}
I hope this will help you.