{% extends 'base.html.twig' %} {% block title %}Nouveau type d'entretien{% endblock %} {% block content %}

Nouveau type d'entretien

Retour
Informations du type
{{ form_start(form, {attr: {novalidate: 'novalidate'}}) }}
{{ form_widget(form.label, {attr: { class: 'form-control form-control-lg' ~ (form.label.vars.errors|length ? ' is-invalid' : ''), placeholder: 'Ex : Assurance, Vignette, Vidange…', autofocus: 'autofocus' }}) }} {{ form_errors(form.label) }}
Le libellé sera copié dans chaque entretien créé avec ce type.
Annuler
{{ form_end(form) }}
{% endblock %}