{% extends 'base.html.twig' %}
{% block head %}
{{ parent() }}
<meta name="description" content="{{ 'CONTACT_META_DESCRIPTION'|trans}}">
<meta name="keywords" content="{{ 'CONTACT_META_KEYWORDS'|trans}}">
{% endblock %}
{% block title %}{{ 'CONTACT_META_TITLE'|trans }}{% endblock %}
{% block body %}
<main>
<section class="komili-blog-detail">
<div class="komili-wrapper">
<div class="komili-blog-detail-box">
<div class="komili-blog-detail-box-grid">
<div class="text">
<h1 class="bold text-color-p mb-24"></h1>
<p class="bold">Elleair International Turkey Kişisel Bakım Ürünleri Üretim Anonim Şirketi</p>
<p>{{ 'ADDRESS: '|trans }}<br>
Balçık Mahallesi Pelitli Yolu Caddesi No:138/1/1 Gebze-Kocaeli</p>
{% if errorMessage %}
<p style="color: red">{{ errorMessage }}</p>
{% endif %}
{% if successMessage %}
<p style="color: green">{{ successMessage }}</p>
{% endif %}
<form action="{{ path('contact') }}" method="post">
<div class="mb-24">
<label for="full_name" class="form-label" {% if fullName %}style="color: red"{% endif %}>{{ 'FULL_NAME'|trans }}</label>
<input type="text" name="full_name" value="{{ values ? values['full_name'] : ''}}" class="form-input w-100">
{% if fullName %}<p style="color: red">{{ fullName }}</p>{% endif %}
</div>
<div class="mb-24">
<label for="email" class="form-label" {% if email %}style="color: red"{% endif %}>{{ 'EMAIL'|trans }}</label>
<input type="text" name="email" value="{{ values ? values['email'] : ''}}" class="form-input w-100">
{% if email %}<p style="color: red">{{ email }}</p>{% endif %}
</div>
<div class="mb-24">
<label for="subject" class="form-label" {% if subject %}style="color: red"{% endif %}>{{ 'SUBJECT'|trans }}</label>
<input type="text" name="subject" value="{{ values ? values['subject'] : ''}}" class="form-input w-100">
{% if subject %}<p style="color: red">{{ subject }}</p>{% endif %}
</div>
<div class="mb-24">
<label for="message" class="form-label" {% if message %}style="color: red"{% endif %}>{{ 'MESSAGE'|trans }}</label>
<textarea name="message" class="form-textarea w-100">{{ values ? values['message'] : ''}}</textarea>
{% if message %}<p style="color: red">{{ message }}</p>{% endif %}
</div>
<button class="btn color-p" type="submit">{{ 'SEND'|trans }}</button>
</form>
</div>
<div class="video-wrapper">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1508.8301510715166!2d29.435276679047632!3d40.85738139458354!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14cb270db6eaf731%3A0x67c47a86d66e3cf5!2zRWxsZWFpciBJbnRlcm5hdGlvbmFsIFR1cmtleSBLacWfaXNlbCBCYWvEsW0gw5xyw7xubGVyaSDDnHJldGltIEEuxZ4u!5e0!3m2!1sen!2str!4v1644494043534!5m2!1sen!2str" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</div>
</div>
</section>
</main>
{% endblock %}