{% extends "Backend/_layout.html.twig" %} {% block page_title %}

Groupes édition d'un groupe de panélistes

{% endblock %} {% block content %}
Edition
{{ form_start(delete_form) }} {{ form_end(delete_form) }}
{{ form_start(edit_form, {'attr' : { 'class' : 'form-horizontal' }}) }}
{{ form_label(edit_form.name, null, {'label': 'Name', 'label_attr': {'class': 'col-md-2 control-label'}}) }}
{{ form_widget(edit_form.name, {'attr': {'class': 'form-control', 'placeholder' : 'Name'}}) }}
Retour
{{ form_end(edit_form) }}
{% endblock %}