{{ form_start(form) }}
<h5 class="modal-title text-center" id="subscriptionModalLabel">GET 10% Off<br>Your First<br/>Order</h5>
<p class="mb-4 text-center continue">And be the first to hear about our </br> new product drops!</p>
<div class="form-group">
<label>Phone Number</label>
<div class="group-input d-flex mb-3 phone-number-box">
{{ form_widget(form.countryCode) }}
{{ form_widget(form.phoneNumber) }}
</div>
</div>
<div class="form-group">
<label>Email Address</label>
{{ form_widget(form.email)}}
<div class="invalid-fields">{{ form_errors(form.email) }}</div>
</div>
{{ form_widget(form.submit) }}
<div class="form-check mt-3">
{{ form_widget(form.optIn) }}
<label class="form-check-label" for="privacyPolicyCheck">
Keep me up to date on news and offers
</label>
</div>
<p class="privacy-data"> For more information on how we process your data, check our <a href="{{ path('route_152') }}" target="_blank">privacy policy</a></p>
{{ form_end(form) }}