{% extends 'admin/layout.html.twig' %} {% block content %} {{ form_start(form) }}
Informations générales
{% if is_granted('ROLE_SUPER_ADMIN') %}
{{ form_label(form.code_client, 'ID Client') }} {{ form_row(form.code_client) }}
{% else %}
{{ form_label(form.code_client, 'ID Client') }} {{ form_row(form.code_client,{'attr':{'disabled':'disabled'}}) }}
{% endif %}
{{ form_label(form.Firstname, 'Prénom') }} {{ form_row(form.Firstname) }}
{{ form_label(form.lastname, 'Nom') }} {{ form_row(form.lastname,{'attr':{'value': client.lastname|nzo_decrypt }}) }}
{{ form_label(form.enseigne, 'Enseigne') }} {{ form_row(form.enseigne) }}
{{ form_label(form.address, 'Adresse') }} {{ form_row(form.address,{'attr':{'value':client.address|nzo_decrypt}}) }}
{{ form_label(form.postalCode, 'Code Postal') }} {{ form_row(form.postalCode) }}
{{ form_label(form.city, 'Ville') }} {{ form_row(form.city) }}
{{ form_label(form.phone, 'Téléphone') }} {{ form_row(form.phone,{'attr':{'value':client.phone|nzo_decrypt}}) }}
{{ form_label(form.email, 'E-mail') }} {{ form_row(form.email,{'attr':{'value':client.email|nzo_decrypt}}) }}
{{ form_row(form._token) }}
Action
{{ form_row(form.submit,{'label':'Enregistrer','attr':{'class':'btn-success btn-form'}}) }}
{% if is_granted('ROLE_ADMIN') %}
{{ form_row(form.submitDelete,{'label':'Supprimer','attr':{'class':'btn-danger btn-form','onclick':'return confirm("Voulez-vous supprimer cette fiche ?")'}}) }}
{% endif %}
{{ form_end(form,{'render_rest': false}) }} {#
#} {# Commentaires#} {#
#} {# #} {#
#} {# #} {# {{ form_label(form.comment, 'Commentaire') }}#} {# #} {# {{ form_row(form.comment) }}#} {# #} {#
#} {# {{ form_start(commentForm) }}#} {# {{ form_row(commentForm.authorName, {'attr':{'placeholder':'Votre Nom'}}) }}#} {# {{ form_row(commentForm.content, {'attr':{'placeholder':'Votre Commentaire'}}) }}#} {# #} {# {{ form_end(commentForm) }}#} {#
#} {#
#} {% endblock %}