{{ form_label(form.name, "Nom", {'label_attr': {'class':'col-sm-3 control-label'}}) }}
{{ form_widget(form.name, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.name) }}
{{ form_label(form.description, "Description", {'label_attr': {'class':'col-sm-3 control-label'}}) }}
{{ form_widget(form.description, {'attr': {'class': 'form-control rich_editor'}}) }} {{ form_errors(form.description) }}
{{ form_label(form.visible, "Forum visible", {'label_attr': {'class':'col-sm-3 control-label'}}) }}
{{ form_widget(form.visible, {'attr': {'class': 'form-control icheck'}}) }} {{ form_errors(form.visible) }}
{{ form_label(form.allow_new_post, "Autoriser nouveau post", {'label_attr': {'class':'col-sm-3 control-label'}}) }}
{{ form_widget(form.allow_new_post, {'attr': {'class': 'form-control icheck'}}) }} {{ form_errors(form.allow_new_post) }}
{{ form_label(form.allowNewReply, "Autoriser les réponses", {'label_attr': {'class':'col-sm-3 control-label'}}) }}
{{ form_widget(form.allowNewReply, {'attr': {'class': 'form-control icheck'}}) }} {{ form_errors(form.allowNewReply) }}
{{ form_row(form._token) }}
Annuler