{% extends 'front-end-base.html.twig' %}
{% block title %} {{ page_title|default('Contact Us') }} {% endblock %}
{% block body %}
{% if widgets is defined and widgets['contact_page_description'] is defined and widgets['contact_page_description']|length > 0 %}
{% for widget in widgets['contact_page_description'] %}
{{ widget.title }}
{{ widget.content|raw }}
{% endfor %}
{% else %}
Contact Us
Get in touch with us.
{% endif %}
Contact Form
Please get in touch us and our friendly consultants will be assist you
{% if widgets is defined and widgets['contact_details'] is defined and widgets['contact_details']|length > 0 %}
{% for widget in widgets['contact_details'] %}
{% if submitted is defined and submitted %}
{% set alert_class = 'danger' %}
{% set alert = 'Error' %}
{% if success %}
{% set alert_class = 'success' %}
{% set alert = 'Success' %}
{% endif %}