Is there a solution to handle multiple forms on one Page in Symfony 3?
Its basically working but submitting one form end in null values for the other form since all the forms seem to have the same name (form).
I have multiple handleRequests on the page, each for one form
$form->handleRequest($request);
...
$secondform->handleRequest($request);
I think I would need a possibility to check which form was submitted but
$request->request->get($form->getName())
gives the same name for both forms so this doesn’t work.
Is there a solution to handle multiple forms or maybe to change the name of each form?