<section id="suport">
<div class="container">
<div id="suport-inside" class="row">
<div class="col-sm-4 col-md-4">
<div class="panel">
<h4><i class="fa fa-fw fa-life-ring" aria-hidden="true"></i>
{% trans %}CONCERNS OR QUESTIONS{% endtrans %}
</h4>
<p>{% trans %}If you have any questions or concerns, please do not hesitate to contact us.{% endtrans %}</p>
<a href="{{ path('social_support') }}" class="btn btn-success btn-stroke">
{% trans %}Support Area{% endtrans %}
</a>
</br>
<small class="find-support">
<i class="glyphicon glyphicon-exclamation-sign"></i>
{% trans %}We have a FAQ page when you can search for an answer.{% endtrans %}
</small>
</div>
</div>
<div class="col-sm-8 col-md-8">
<div class="panel">
<h4><i class="fa fa-fw fa-envelope" aria-hidden="true"></i>
{% trans %}NEWSLETTER SIGNUP{% endtrans %}</h4>
<p>
{% trans %}By subscribing to our mailing list you will always be updated with the latest news from us.{% endtrans %}
</p>
<form class="form-inline" role="form" id="newsletter-form" action="{{ path('social_user_subscribe_newsletter') }}" method="POST"
novalidate="novalidate">
<div class="form-group">
{{ form_widget(newsletter_form.name) }}
</div>
<div class="form-group">
{{ form_widget(newsletter_form.email) }}
</div>
{{ form_widget(newsletter_form.value, { value : '[email protected]' }) }}
{{ form_rest(newsletter_form) }}
<button type="submit" class="btn btn-success">{% trans %}Join Us{% endtrans %}</button>
</form>
<small>
<i class="glyphicon glyphicon-exclamation-sign"></i>
{% trans %}We take your privacy extremely seriously.{% endtrans %}
</small>
</div>
</div>
</div>
</div>
</section>