16 lines
534 B
PHP
16 lines
534 B
PHP
<x-filament-panels::page>
|
|
<div class="space-y-4">
|
|
{{-- {{ $this->filtersForm($this->form) }} --}}
|
|
{{ $this->filtersForm($this->form) }}
|
|
</div>
|
|
<div class="flex-row gap-2 mt-4">
|
|
<button
|
|
type="button"
|
|
wire:click="addRemark"
|
|
class="px-3 py-1 border border-primary-500 text-primary-600 rounded hover:bg-primary-50 hover:border-primary-700 transition text-sm"
|
|
>
|
|
Save
|
|
</button>
|
|
</div>
|
|
</x-filament-panels::page>
|