{% extends 'AppBundle:Backend:_layout.html.twig' %} {% block page_title %}

CategoryHabit édition de CategoryHabit

{% 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'}}) }}
{{ form_label(edit_form.visible, null, {'label': 'Visible', 'label_attr': {'class': 'col-md-2 control-label'}}) }}
{{ form_widget(edit_form.visible, {'attr': {'class': 'form-control', 'placeholder' : 'Visible'}}) }}
Retour
{{ form_end(edit_form) }}
{% endblock %}