{% import '_form_macros.html.twig' as f %} {{ form_start(form, {attr: {novalidate: 'novalidate', class: 'rounded-2xl bg-surface border border-line p-5'}}) }} {{ f.errors_summary(form) }} {{ f.section('Intervenant') }}
{{ f.field(form.name, 2) }} {{ f.field(form.type) }} {{ f.field(form.lot) }}
{{ f.section('Contact') }}
{{ f.field(form.contact) }} {{ f.field(form.phone) }} {{ f.field(form.email, 2) }}
{{ f.section('Notes') }}
{{ f.field(form.notes) }}
{{ f.actions(path('app_contractor_index')) }} {{ form_end(form) }}