{% 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('Devis') }}
{{ f.field(form.label, 2) }} {{ f.field(form.kind, 2) }} {{ f.field(form.totalAmount) }} {{ f.field(form.htAmount) }}
{{ f.section('Rattachement') }}
{{ f.field(form.lot) }} {{ f.field(form.company) }} {{ f.field(form.financing, 2) }}
{{ f.section('Notes') }}
{{ f.field(form.notes) }}
{{ f.actions(path('app_quote_index')) }} {{ form_end(form) }}