Files
zemailnator/resources/views/filament/pages/settings.blade.php
2025-04-23 02:44:47 +05:30

16 lines
476 B
PHP

<x-filament-panels::page>
@auth
@if (auth()->user()->level === 9)
@livewire('notifications')
<x-filament-panels::form wire:submit="save">
{{ $this->form }}
<x-filament-panels::form.actions
:actions="$this->getFormActions()"
/>
</x-filament-panels::form>
@else
@php abort(403); @endphp
@endif
@endauth
</x-filament-panels::page>