{% extends "base.html.twig" %} {% block content %}
{% include 'shared/menu.html.twig' %}
Ajout d'un nouveau chapitre
{{ form_start(chapterForm, {'action': path('admin_add_chapter', {'id': courses.id }), 'method': 'POST','attr': { 'novalidate': 'novalidate' }}) }}
{{ form_widget(chapterForm.title, { 'attr': {'placeholder': 'Titre*'} }) }} {{ form_errors(chapterForm.title) }}
{{ form_widget(chapterForm.orderChapter, { 'attr': {'placeholder': 'Ordre d\'affichage*'} }) }} {{ form_errors(chapterForm.orderChapter) }}
{{ form_widget(chapterForm.description, { 'attr': {'placeholder': 'Description*'} }) }} {{ form_errors(chapterForm.description) }}
{% for message in app.flashes('success-add-chapter') %}

{{ message }}

{% endfor %}
{% endblock %}