15 lines
465 B
PHP
15 lines
465 B
PHP
<x-filament-panels::page>
|
|
<form wire:submit.prevent="save" class="">
|
|
{{ $this->form }}
|
|
|
|
<div class="flex mt-6">
|
|
<button
|
|
type="submit"
|
|
class="inline-flex items-center px-4 py-2 bg-primary-600 text-white rounded-md hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-primary-500"
|
|
>
|
|
Save
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</x-filament-panels::page>
|