<x-filament-panels::page>
<div>
<x-filament::button wire:click="openModal">
Invite a member
</x-filament::button>
<x-filament::modal wire:model="isModalOpen" class="w-100">
<x-slot name="trigger">
<!-- Trigger content if needed -->
</x-slot>
<x-slot name="heading">
<div class="flex justify-between">
<h3>Invite a new member</h3>
</div>
</x-slot>
<div class="w-100">
{{ $this->form }}
</div>
<x-slot name="footer">
<x-filament::button wire:click="submit">
Invite
</x-filament::button>
<x-filament::button color="danger" x-on:click="closeModal">
Close
</x-filament::button>
</x-slot>
</x-filament::modal>
</div>
</x-filament-panels::page>
<x-filament-panels::page>
<div>
<x-filament::button wire:click="openModal">
Invite a member
</x-filament::button>
<x-filament::modal wire:model="isModalOpen" class="w-100">
<x-slot name="trigger">
<!-- Trigger content if needed -->
</x-slot>
<x-slot name="heading">
<div class="flex justify-between">
<h3>Invite a new member</h3>
</div>
</x-slot>
<div class="w-100">
{{ $this->form }}
</div>
<x-slot name="footer">
<x-filament::button wire:click="submit">
Invite
</x-filament::button>
<x-filament::button color="danger" x-on:click="closeModal">
Close
</x-filament::button>
</x-slot>
</x-filament::modal>
</div>
</x-filament-panels::page>