I'm new to Symfony so I need little help.
I have this code
$form->handleRequest($request);
if ($request->isMethod('POST')) {
$form->submit($request);
if ($form->isValid()) {
//TODO
}
return $this->redirect($this->generateUrl('news'));
}
When the form is submitted, I always obtain 500 Internal Server Error - AlreadySubmittedException.