{% extends "::admin.html.twig" %} {% block title %} Ajouter Allocation {% endblock %} {% block entete %} Modifier Allocation {% endblock %} {% block body %}
{{ form_start(form, {'attr': {'id': ''}}) }}
Modifier Allocation
{{ form_widget(form.title, { 'attr': {'class': 'form-control','placeholder': 'Titre' }}) }}

{{ form_widget(form.date, { 'attr': {'class': 'form-control', 'required':'true', 'placeholder': ''}}) }}

{{ form_widget(form.file, { 'attr': {'class': 'form-control'}}) }}
{{ form_widget(form.lieu, { 'attr': {'class': 'form-control','placeholde': 'Lieu'}}) }}
{{ form_widget(form.description, { 'attr': {'class': ' ckeditor form-control', 'placeholder': ''}}) }}
{{ form_end(form) }}
{% endblock %}