...
$form = $this->createForm(...);
...
return $this->render('RegTicket/index.html.twig', [
'form'=> $form->createView() // Passage du formulaire au template
]);
===== Dans le template : Affichage du formulaire =====
{% block body %}
{{form(form)}}
{% endblock %}