# inside your controller
public function formAction()
{
$context = $this->get('form.context');
$request = $this->get('request');
$form = MyForm::create($context, 'myform'); // 2nd parameter is the name of the form
$form->bind($request);
return $this->render('MyBundle:Index:form.html.twig', array(
'form' => $form
));
}
If you forget to pass a name the automatic token check will report everytime an error after submission.