In Symfony docs they say to use this
<div>
{{ form_label(form.task) }}
{{ form_errors(form.task) }}
{{ form_widget(form.task) }}
</div>
But this generates the label element.
But I want to have table <td>
instead of <label>
And also for the input textbox
, I want to mention the size of text box. Where can I do that?