{% extends 'base.html.twig' %} {% block title %}{{parent()}}: Ajout d'une langue{% endblock %} {% block body %} {% include 'breadcrumb.html.twig' %}

Ajout d'une langue

{{ form_start(form, {'method': 'post', 'action': path('langue_langue_create' )}) }} {{ form_label(form.libelle, 'Libellé ') }} {{ form_widget(form.libelle, {'attr': {'class': 'form-control'}}) }}
{{ form_errors(form.libelle) }}
{{ form_end(form) }}
{% endblock %}