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
The two forms will be posted.
Try using:
$this->createNamedBuilder
instead of
$this->createFormBuilder
Then in your controller, locate the form by name:
if ($request->request->has("your form name") { $form->handleRequest($request); }