{%extends "base-admin.html.twig"%} {%block title%} {%if edit is defined and edit == 1%} Demand level-2 : {{entity.name}} {%else%} Add a demand (product level-2) {%endif%} | {{parent()}} {%endblock%} {%block body%}

{%if edit is defined and edit == 1%} Demand (product level-2) : {{entity.name}} {%else%} Add a demand (product level-2) {%endif%}

{{form_start(form)}} {{form_errors(form)}}
{{form_label(form.phoneNumber)}} {{form_errors(form.phoneNumber)}} {{form_widget(form.phoneNumber)}}
{{form_label(form.birthday)}} {{form_errors(form.birthday)}} {{form_widget(form.birthday)}}
{{form_label(form.cin)}} {{form_errors(form.cin)}} {{form_widget(form.cin)}}
{{form_label(form.delivered)}} {{form_errors(form.delivered)}} {{form_widget(form.delivered)}}
{{form_label(form.country)}} {{form_errors(form.country)}} {{form_widget(form.country)}}
{{form_label(form.city)}} {{form_errors(form.city)}} {{form_widget(form.city)}}
{{form_label(form.cp)}} {{form_errors(form.cp)}} {{form_widget(form.cp)}}
{{form_label(form.destination)}} {{form_errors(form.destination)}} {{form_widget(form.destination)}}
(*) Obligatory
{{form_widget(form.submit)}}
{{form_end(form)}}
{% endblock %}