{# Colonne vide à gauche #}
{% for message in app.flashes('warning')|slice(0, 1) %}
{% endfor %} {{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }}
{{ form_label(form.title) }} {{ form_widget(form.title, { attr: { class: 'w-full bg-white border border-black rounded px-4 py-2' } }) }} {{ form_errors(form.title) }} {{ form_label(form.oeuvre) }} {{ form_widget(form.oeuvre, { attr: { class: 'w-full bg-gray-200 border border-black rounded px-4 py-2', readonly: 'readonly' } }) }} {{ form_errors(form.oeuvre) }}
{{ form_label(form.content) }} {{ form_widget(form.content, { attr: { class: 'tinymce w-full bg-white border border-black rounded px-4 py-2', rows: 20 } }) }} {{ form_errors(form.content) }}
{{ form_row(form.status) }}
{{ form_end(form) }}
{# Colonne vide à droite #}