{% extends 'base.html.twig' %} {% block title %}{{parent()}}: Modification du Pays{% endblock %} {% block body %} {% include 'breadcrumb.html.twig' %}

Modifier un pays

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