{% if renderPdf == false %}
{{ form_start(contact_form) }}
Contact {% if basics.email is not empty %} {{ basics.email }}{% endif %}
{{ form_label(contact_form.name) }}
{{ form_widget(contact_form.name) }}
{{ form_label(contact_form.email) }}
{{ form_widget(contact_form.email) }}
{{ form_label(contact_form.message|raw) }}
{{ form_widget(contact_form.message) }}
{{ form_label(contact_form.submit) }}
{{ form_widget(contact_form.submit) }}
{{ form_rest(contact_form) }}
{{ form_end(contact_form) }}
{% endif %}