{% extends 'Frontend/_templates/default.html.twig' %}
{% block page_title %}Enquire About {{ property.address2 }}, {{ property.area.name }}{% endblock %}
{% block meta_tags %}
{% endblock %}
{% block content %}
<div class="block-heading">
<div class="container">
<h1>Enquire About {{ property.address2 }}, {{ property.area.name }}</h1>
<p class="sub-title">
Property reference: #{{ property.reference }}
</p>
</div>
</div>
<div class="block-text">
<div class="container">
<p class="mb-5 text-center">
Leave your details below and we'll get back to you as soon as we can.<br/>
If you're interested in any other properties please let us know.
</p>
<div class="row">
<div class="offset-md-3 col-md-6">
{{ form_start(propertyEnquiryForm) }}
{{ form_row(propertyEnquiryForm.name) }}
{{ form_row(propertyEnquiryForm.email) }}
{{ form_row(propertyEnquiryForm.phone) }}
{{ form_row(propertyEnquiryForm.message, {attr: {rows: 8}}) }}
{{ form_widget(propertyEnquiryForm.save) }}
{{ form_end(propertyEnquiryForm) }}
</div>
</div>
</div>
</div>
{% endblock %}