I'm working on a project of my own in Symfony -- A simple blog.
I'm having a really hard time trying to develop an article search form like stack overflow does -- a form in the header.
So, the problem is, I'm forced to use an embeded controller in the base template if i want to use symfony's form advantages.
<div class="b-header-block m-search">
{{ render(controller('YagoQuinoySimpleBlogBundle:Blog:searchArticles')) }}
</div>
Has anyone encountered a similar problem?