I have managed to setup the symfony forms to work as standalone in my project. However i can only get it to work with twig. Is it possible for me to render the forms without twig?
The way i currently do it is:
#Controller
echo $twig->render('index.html.twig', array(
'form' => $form->createView(),
));
#Twig File
{{ form_widget(form) }}
Is it possible to render the form without twig?
Any help is greately appreciated