With Symfony 2.1, how can I create a form type with multiple input fields in it? So in the form builder I want to add a custom form type :
$builder->add('test','my_fieldtype')
Then if I do this in the template :
{{ form_row(form.test) }}
I want it to display a row that has a label and 2 or 3 input fields. Something like the date type I suppose.