{% extends 'base.html.twig' %} {% block title %}Nouvelle entreprise - Admin{% endblock %} {% block body %}
{# ================================================================ HEADER ================================================================ #}
{% include '_molecules/page-header/page-header.html.twig' with { title: 'Nouvelle entreprise', subtitle: 'Créer une entreprise et configurer ses accès', icon: 'plus', iconColor: 'primary', backHref: path('admin_company_list'), backLabel: 'Retour à la liste' } 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_list') } only %} {% include '_atoms/button/button.html.twig' with { label: 'Créer l\'entreprise', variant: 'primary', size: 'lg', icon: 'check', type: 'submit' } only %}
{{ form_end(form) }}
{% endblock %}