{{ form.gender(class="form-control") }}
{% for error in form.gender.errors %}
[{{ error }}]
{% endfor %}
{{ form.age_group(class="form-control") }}
{% for error in form.age_group.errors %}
[{{ error }}]
{% endfor %}
{{ form.nationality(class="form-control") }}
{% for error in form.nationality.errors %}
[{{ error }}]
{% endfor %}
{{ form.latest_country(class="form-control") }}
This is the country you have lived in most in the last 10 years.
{% for error in form.latest_country.errors %}
[{{ error }}]
{% endfor %}
{{ form.education_level(class="form-control") }}
For more information on your education level please visit the Government website
{% for error in form.education_level.errors %}
[{{ error }}]
{% endfor %}
{{ form.occupation(class="form-control") }}
{% for error in form.occupation.errors %}
[{{ error }}]
{% endfor %}
{{ form.income(class="form-control") }}
Income per anum.
{% for error in form.income.errors %}
[{{ error }}]
{% endfor %}