{% trans_default_domain 'front_ec_international' %}
{{ form_start(form, { 'attr': { "id": "newsletter-form-" ~ campaign.id, "class": campaign.recaptcha ? 'recaptcha newsletter-form' : 'newsletter-form', "action": path('front_newsletter_view', {"request": app.request, 'filter': campaign.slug, 'website': website.id}), "novalidate": "novalidate", 'data-modal': "#" ~ modalId }}) }} {% if form['field_ho'] is defined %} {{ form_label(form['field_ho']) }} {{ form_widget(form['field_ho']) }} {% endif %} {% if form['field_ho_entitled'] is defined %} {{ form_label(form['field_ho_entitled']) }} {{ form_widget(form['field_ho_entitled']) }} {% endif %}
{{ form_errors(form.email) }} {% for type, flashes in app.session.flashbag.all %} {% for flash in flashes %} {{ flash|raw }} {% endfor %} {% endfor %}
{% if intro|striptags|length > 0 %}

{{ intro|unescape|raw|nl2br }}

{% endif %}
{% if campaign.recaptcha %}
{% endif %} {{ form_end(form) }} {% if campaign.thanksModal %} {% include 'front/' ~ websiteTemplate ~ '/include/thanks-modal.html.twig' %} {% endif %}