Why wouldn't it be possible to display symfony forms from components? That
would be *i n s a n e*. A form is just an object you pass onto the view.
Just instantiate your form class in the component via $this->form = new
YourFormClass(); and do an echo $form; in your component view.
What did you
hi..
I have got two forms to be displayed on a page (both are independent
of each other). Ex: user login, search
Both the forms are the output of two different "actions"
How do I get both the forms to be displayed on the same page?
Component would have been better, but as far I could gather, it