{% extends 'admin.html.twig' %} {% block title %}Hello CategoryController!{% endblock %} {% block body %}
{{ include("layouts/Flash/_flash.html.twig") }}

Ajout d'un Type

Type de crowndfunding
{{ form_start(form) }}
{{ form_row(form.name_fr, {'attr' : { 'placeholder' : 'nom du type en Fr' }}) }}
{{ form_row(form.name_en, {'attr' : { 'placeholder' : 'nom du type en En' }}) }}
{{ form_row(form.is_active, {'attr' : { 'placeholder' : 'nom du type en En' }}) }}
{{ form_end(form) }}
{% endblock %}