templates/registration/register.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Register{% endblock %}
  3. {% block body %}
  • Création de compte


  • {% if userExistError is not empty %}
  • {{ userExistError }}
  • {% endif %}
  • {% if formFieldErrors is not empty %}
  • {% for error in formFieldErrors %}
  • {% if error is not empty %}
  • {{ error }}
  • {% endif %}
  • {% endfor %}

  • {% endif %}
  • {{ form_start(registrationForm) }}
  • {{ form_row(registrationForm.nom) }}
  • {{ form_row(registrationForm.prenoms) }}
  • {{ form_row(registrationForm.telephone) }}
  • {{ form_row(registrationForm.password, {
  • }) }}
  • {{ form_row(registrationForm.confirmpassword, {
  • }) }}
  • {{ form_row(registrationForm.telwhatsapp) }}
  • {{ form_row(registrationForm.email) }}
  • {{ form_row(registrationForm.boutique) }}
  • {{ form_label(registrationForm.ville, 'Localisation de la boutique/Agence', { 'attr': {'class': 'form_label'} }) }}
  • {{ form_widget(registrationForm.ville, { 'attr': {'class': 'form-control '} }) }}

  • {{ form_end(registrationForm) }}
  • {% endblock %}