{% extends 'template.html.twig' %} {% block title %}Become a model - The Face{% endblock %} {% block body %} {% set classes = [ 'page-container', 'page-container-become', ] %} {% set languages = [ 'en', 'fr' ] %} {% set introText = [ 'Please submit your details using the form and provide natural snapshots without make up, portrait and full length.
Female candidates must have a minimum height of 1,74 m. Male candidates must have a minimum height of 1,85 m.', 'Merci de remplir le formulaire ci-joint et de joindre vos photos, sans maquillage, portrait et plein pied.
Les candidates femmes doivent avoir une taille minimale de 1,74 m. Les candidats hommes doivent avoir une taille minimale de 1,85 m.' ] %} {# « les mineurs de moins de 16 ans désirant envoyer leur candidature doivent impérativement joindre une autorisation parentale a cet effet. Toute candidature de mineur de 16 ans non accompagnée de l’autorisation parentale ne sera pas étudiée par The Face Paris ». #}

Become a model

{% if lang == 'en' %} {{ introText[0]|raw }} {% else %} {{ introText[1]|raw }} {% endif %}

{% form_theme form _self %} {% block checkbox_radio_label -%} {#- Do not display the label if widget is not defined in order to prevent double label rendering -#} {%- if widget is defined -%} {% set is_parent_custom = parent_label_class is defined and ('checkbox-custom' in parent_label_class or 'radio-custom' in parent_label_class) %} {% set is_custom = label_attr.class is defined and ('checkbox-custom' in label_attr.class or 'radio-custom' in label_attr.class) %} {%- if is_parent_custom or is_custom -%} {%- set label_attr = label_attr|merge({class: (label_attr.class|default('') ~ ' custom-control-label')|trim}) -%} {%- else %} {%- set label_attr = label_attr|merge({class: (label_attr.class|default('') ~ ' form-check-label')|trim}) -%} {%- endif %} {%- if not compound -%} {% set label_attr = label_attr|merge({'for': id}) %} {%- endif -%} {%- if required -%} {%- set label_attr = label_attr|merge({class: (label_attr.class|default('') ~ ' required')|trim}) -%} {%- endif -%} {%- if parent_label_class is defined -%} {%- set label_attr = label_attr|merge({class: (label_attr.class|default('') ~ ' ' ~ parent_label_class)|replace({'checkbox-inline': '', 'radio-inline': '', 'checkbox-custom': '', 'radio-custom': ''})|trim}) -%} {%- endif -%} {%- if label is not same as(false) and label is empty -%} {%- if label_format is not empty -%} {%- set label = label_format|replace({ '%name%': name, '%id%': id, }) -%} {%- else -%} {%- set label = name|humanize -%} {%- endif -%} {%- endif -%} {{ widget|raw }} {{- label is not same as(false) ? (translation_domain is same as(false) ? label|raw : label|trans({}, translation_domain)|raw) -}} {{- form_errors(form) -}} {%- endif -%} {%- endblock checkbox_radio_label %}
{{ form(form) }}
{% endblock %}