{# app/templates/admin/company-create.html #} {% extends "admin/base.html" %} {% from 'shared/macros/headers.html' import page_header %} {% from 'shared/macros/alerts.html' import error_state %} {% block title %}Create Company{% endblock %} {% block alpine_data %}adminCompanyCreate(){% endblock %} {% block content %} {{ page_header('Create New Company', subtitle='Create a company account with an owner user', back_url='/admin/companies', back_label='Back to Companies') }}

Company Created Successfully!

{{ error_state('Error Creating Company', error_var='errorMessage', show_condition='errorMessage') }}

Company Information

Public business contact email

Owner Account

A user account will be created for the company owner. If the email already exists, that user will be assigned as owner.

This email will be used for owner login. Can be different from business contact email.

{% endblock %} {% block extra_scripts %} {% endblock %}