{{ form_start(formImport, {'attr': {'class': 'form-horizontal', 'enctype' : 'multipart/form-data', 'action': path(form_action)}}) }}
{% for item in formImport %} {% if 'token' in item.vars.name %} {{ form_widget(item, {'attr': {'class': 'form-control', 'type':'hidden' }}) }} {% else %}
{{ form_label(item) }} {{ form_widget(item) }} {{ form_help(item) }}
{% endif %} {% endfor %}
{{ form_rest(form) }} {{ form_end(form) }}