<div class="individual-footer__feedback box individual-feedback" id="request">
<h2 class="individual-feedback__title">Оставить заявку</h2>
<form action="#" class="form requestForm">
<input name="token" type="hidden" />
<input name="type" value="service" type="hidden">
<div class="form__group">
<div class="form__label">Имя <span class="text--primary">*</span></div>
<input class="form__control" type="text" placeholder="Как к вам обращаться?"
name="name" {% if getIdentity() %}value="{{ getIdentity().name }}" readonly{% else %}required{% endif %}>
</div>
<div class="form__group">
<div class="form__label">Телефон <span class="text--primary">*</span></div>
<input type="tel" class="form__control" placeholder="+7 (" id="a-phone"
name="phone" {% if getIdentity() %}value="{{ getIdentity().phone }}" readonly{% else %}required{% endif %}>
</div>
<div class="form__group">
<div class="form__label">Почта <span class="text--primary">*</span></div>
<input class="form__control" type="email" placeholder="www@mymail.ru"
name="email" {% if getIdentity() %}value="{{ getIdentity().email }}" readonly{% else %}required{% endif %}>
</div>
<div class="form__group">
<div class="form__label">Комментарий</div>
<textarea name="comment" class="form__control" placeholder="Сообщение" cols="30" rows="3"></textarea>
</div>
<div class="form__btn">
<button type="submit" class="btn">
<span class="btn__text">Отправить заявку</span>
</button>
</div>
<div class="form__help">
Нажимая кнопку «Отправить», я даю <a href="{{ path('agreement') }}" target="_blank">согласие</a> на обработку персональных данных.
</div>
<div class="form__help">
This site is protected by reCAPTCHA and the Google
<a rel="nofollow" href="https://policies.google.com/privacy">Privacy Policy</a>
and <a rel="nofollow" href="https://policies.google.com/terms">Terms of Service</a> apply.
</div>
</form>
</div>