{% extends 'admin/layout.html.twig' %} {% form_theme form 'bootstrap_4_layout.html.twig' %} {% block content %}

Création d'un distributeur

Une opportuné s'offre à nous ! Ne laissons pas filé ce filon...
{{ form_start(form) }}
Indentification distributeur Création du code client
{{ form_label(form.client, 'Client') }} {{ form_row(form.client) }}
{{ form_label(form.code, 'Numéro') }} {{ form_row(form.code) }}
{{ form_label(form.type, 'Type') }} {{ form_row(form.type) }}
{{ form_label(form.rent, 'Formule') }} {{ form_row(form.rent) }}
{{ form_label(form.setup_at, 'Date d\'installation') }} {{ form_row(form.setup_at) }}
Localisation Distributeur
{{ form_label(form.addressSetup, 'Adresse') }} {{ form_row(form.addressSetup) }}
{{ form_label(form.City, 'Ville') }} {{ form_row(form.City) }}
{{ form_label(form.postalCode, 'Code Postal') }} {{ form_row(form.postalCode) }}
{{ form_row(form.submit,{'label':'Enregistrer le distributeur !','attr':{'class':'btn-success btn-form'}}) }} {{ form_row(form._token) }}
{{ form_end(form,{'render_rest': false}) }}
{% endblock content %}