{% extends 'base.html.twig' %} {% block title %}Register{% endblock %} {% block body %}

Create Your Account

{% for flash_error in app.flashes('verify_email_error') %} {% endfor %} {{ form_start(registrationForm, {'attr': {'class': 'needs-validation'}}) }} {{ form_row(registrationForm.name) }} {{ form_row(registrationForm.email) }} {{ form_row(registrationForm.phone_number) }} {{ form_row(registrationForm.address) }} {{ form_row(registrationForm.role) }} {{ form_row(registrationForm.plainPassword, { label: 'Password' }) }} {{ form_row(registrationForm.agreeTerms) }}
Already have an account? Sign in
{{ form_end(registrationForm) }}
{% endblock %}