{% extends "base.html.twig" %} {% block title %}SAINT-LEMAN ADMIN{% endblock %} {% block body %}

SAINT LEMAN: ADMIN

Nouvelle Categorie

{{ form_start(formCategory) }}
{{ form_row(formCategory.title, {'attr':{'class': 'form-control small'} }) }}
{{ form_row(formCategory.description, {'attr':{'class': 'form-control small'} })}}
{% for message in app.flashes('message') %}
{{ message }}
{% endfor %}
{{ form_row(formCategory.Ajouter, {'attr':{'class': 'btn btn-info'} })}}
{{form_end(formCategory)}}
{% endblock body %}