{% if form_action == 'suscriber_list_add' %} {{ form_start(form, {'attr': {'class': 'form-horizontal', 'action': path(form_action)}}) }} {% else %} {{ form_start(form, {'attr': {'class': 'form-horizontal'}}) }} {% endif %}
{{ form_widget(form.fname, {'attr': {'class': 'form-control', 'placeholder':"{{'Form.Suscriber.Fname' | trans}}"}}) }} {{ form_label(form.fname, 'Form.Suscriber.Fname' | trans) }}
{{ form_widget(form.lname, {'attr': {'class': 'form-control', 'placeholder':"{{'Form.Suscriber.Lname' | trans}}"}}) }} {{ form_label(form.lname, 'Form.Suscriber.Lname' | trans) }}
{{ form_widget(form.phone1, {'attr': {'class': 'form-control', 'placeholder':"{{'Form.Suscriber.Phone1' | trans}}"}}) }} {{ form_label(form.phone1, 'Form.Suscriber.Phone1' | trans) }}
{{ form_widget(form.phone2, {'attr': {'class': 'form-control', 'placeholder':"{{'Form.Suscriber.Phone2' | trans}}"}}) }} {{ form_label(form.phone2, 'Form.Suscriber.Phone2' | trans) }}
{{ form_widget(form.email1, {'attr': {'class': 'form-control', 'placeholder':"{{'Form.Suscriber.Email1' | trans}}"}}) }} {{ form_label(form.email1, 'Form.Suscriber.Email1' | trans) }}
{{ form_widget(form.email2, {'attr': {'class': 'form-control', 'placeholder':"{{'Form.Suscriber.Email2' | trans}}"}}) }} {{ form_label(form.email2, 'Form.Suscriber.Email2' | trans) }}
{% for t in form.memberGroups %} {{ form_widget(t, {'attr': {'class': ''}}) }} {{ form_label(t) }} {% endfor %}
{{ form_rest(form) }} {{ form_end(form) }}