17 lines
641 B
PHP
17 lines
641 B
PHP
<x-filament-panels::page wire:init="loadAddOns">
|
|
@if(!$addOnsLoaded)
|
|
<x-filament::section>
|
|
<div class="flex items-center justify-center gap-2 py-12">
|
|
<x-filament::loading-indicator class="h-5 w-5 text-gray-400 dark:text-gray-500" />
|
|
<span class="text-sm text-gray-500 dark:text-gray-400">{{ trans('blockland-config::blockland-config.loading_addons') }}</span>
|
|
</div>
|
|
</x-filament::section>
|
|
@else
|
|
<div class="space-y-8">
|
|
<div class="flex flex-col gap-10">
|
|
{{ $this->form }}
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</x-filament-panels::page>
|