{% load i18n widget_tweaks %}
{% csrf_token %}
{{ form.name.label_tag }} {{ form.name|add_class:"form-control input-lg" }} {% if form.name.errors %} {{ form.name.errors }} {% endif %}
{{ form.email.label_tag }} {{ form.email|add_class:"form-control input-lg" }} {% if form.email.errors %} {{ form.email.errors }} {% endif %}
{{ form.mobile.label_tag }} {{ form.mobile|add_class:"form-control input-lg" }} {% if form.mobile.errors %} {{ form.mobile.errors }} {% endif %}
{{ form.text.label_tag }} {{ form.text|add_class:'form-control'|attr:"rows:18" }} {% if form.text.errors %} {{ form.text.errors }} {% endif %}
{{ form.captcha }} {% if form.captcha.errors %}

{{ form.captcha.errors.as_text }}

{% endif %}