22 lines
872 B
PHP
22 lines
872 B
PHP
<x-filament::page>
|
|
<div class="flex flex-col gap-6">
|
|
<x-filament::section>
|
|
<div class="flex flex-col gap-6">
|
|
<div class="text-sm text-gray-600 dark:text-gray-300">
|
|
Register a new managed tenant in TenantPilot. After creation, you will automatically be assigned the <span class="font-medium">Owner</span> role for that tenant.
|
|
</div>
|
|
|
|
<form wire:submit="create" class="flex flex-col gap-6">
|
|
{{ $this->form }}
|
|
|
|
<div class="flex justify-end">
|
|
<x-filament::button type="submit" color="primary">
|
|
Add managed tenant
|
|
</x-filament::button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</x-filament::section>
|
|
</div>
|
|
</x-filament::page>
|