{% extends 'base.html.twig' %} {% block title %}Modifier {{ company.name }} - Admin{% endblock %} {% block body %}
{# ================================================================ HEADER ================================================================ #}
{% include '_molecules/page-header/page-header.html.twig' with { title: 'Modifier ' ~ company.name, subtitle: 'Mettre à jour les informations de l\'entreprise', icon: 'edit', iconColor: 'primary', backHref: path('admin_company_show', {uuid: company.uuid}), backLabel: 'Retour à l\'entreprise' } only %}
{# ================================================================ FORMULAIRE ================================================================ #} {{ form_start(form, {'attr': {'class': 'space-y-6', 'data-controller': 'admin--address-autocomplete'}}) }} {% include 'admin/company/_form_fields.html.twig' %} {# Actions #}
{% include '_atoms/button/button.html.twig' with { label: 'Annuler', variant: 'ghost', size: 'lg', href: path('admin_company_show', {uuid: company.uuid}) } only %} {% include '_atoms/button/button.html.twig' with { label: 'Enregistrer', variant: 'primary', size: 'lg', icon: 'check', type: 'submit' } only %}
{{ form_end(form) }}
{% endblock %}