{% extends 'base.html.twig' %} {% block body %} {{ form_start(form) }}

{% if mode=="update" %} Modification Catégorie d'Annonce = {{alertcategory.label}} {% elseif mode=="submit" %} Création Catégorie d'Annonce {% endif %}

{{ form_widget(form.submit) }} Annuler {% if mode=="update" %} Supprimer {% endif %}

{% if app.session.flashbag.has('error') %}
Erreur
{% for flashMessage in app.session.flashbag.get('error') %} {{ flashMessage }}
{% endfor %}
{% endif %} {% if app.session.flashbag.has('notice') %}
Information
{% for flashMessage in app.session.flashbag.get('notice') %} {{ flashMessage }}
{% endfor %}
{% endif %}
Informations
{{ form_row(form.label) }} {{ form_row(form.color) }}
{% if alertcategory.icon %} {% endif %}
{{ form_row(form.idicon) }} Selectionner un Icône Détacher l'Icône
{{ form_end(form) }} {% endblock %} {% block localscript %} {% endblock %}