{% include '_molecules/page-header/page-header.html.twig' with {
title: 'Modifier le contrat',
subtitle: contract.name ~ ' - ' ~ company.name,
icon: 'edit',
iconColor: 'primary',
backHref: path('admin_contract_show', {companyUuid: company.uuid, contractUuid: contract.uuid}),
backLabel: 'Retour au contrat'
} only %}
{# ================================================================
FORMULAIRE
================================================================ #}
{% embed '_molecules/card/card.html.twig' with {
title: 'Informations du contrat',
subtitle: 'Modifiez les paramètres et les droits du contrat',
icon: 'file-text',
iconColor: 'primary'
} %}
{% block body %}
{{ form_start(form, {'attr': {'class': 'space-y-6'}}) }}
{% include 'admin/contract/_form_fields.html.twig' %}
{# Actions #}
{% include '_atoms/button/button.html.twig' with {
label: 'Annuler',
variant: 'ghost',
size: 'lg',
href: path('admin_contract_show', {companyUuid: company.uuid, contractUuid: contract.uuid})
} only %}
{% include '_atoms/button/button.html.twig' with {
label: 'Enregistrer les modifications',
variant: 'primary',
size: 'lg',
type: 'submit',
width: 'full'
} only %}