How to reproduce
Use attribute "no validate" in the registration form.
{{ form_start(registrationForm, {
'attr': {
'novalidate': 'novalidate'
}
}) }}
{# ... #}
{{ form_end(registrationForm) }}
Nothing appears when clicking "S'inscrire" (no violations or form errors in the debug bar either):
Expected behavior :
How to fix
Replace :
return $this->render('registration/register.html.twig', [
'registrationForm' => $form->createView(),
]);
with :
return $this->render('registration/register.html.twig', [
'registrationForm' => $form,
]);