Added Website Setting Page

This commit is contained in:
Gitea
2025-04-23 02:44:47 +05:30
parent 59a2c07d81
commit 65f6df64aa
4 changed files with 266 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<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>