16 lines
482 B
PHP
16 lines
482 B
PHP
<x-filament::page>
|
|
<div class="flex flex-col gap-6">
|
|
<x-filament::section>
|
|
<form wire:submit="save" class="flex flex-col gap-6">
|
|
{{ $this->form }}
|
|
|
|
<div class="flex justify-end">
|
|
<x-filament::button type="submit" color="primary">
|
|
Save
|
|
</x-filament::button>
|
|
</div>
|
|
</form>
|
|
</x-filament::section>
|
|
</div>
|
|
</x-filament::page>
|