Files
fotospiel-app/resources/views/filament/resources/event-resource/pages/manage-watermark.blade.php
Codex Agent 15e19d4e8b
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
Add join token analytics dashboard and align Filament views
2026-01-04 18:21:59 +01:00

19 lines
667 B
PHP

@php
use Filament\Support\Enums\GridDirection;
use Filament\Support\Icons\Heroicon;
use Illuminate\View\ComponentAttributeBag;
$stacked = (new ComponentAttributeBag())->grid(['default' => 1], GridDirection::Column);
@endphp
<x-filament::page>
<x-filament::section :description="__('filament-watermark.description')" :icon="Heroicon::Photo">
<div {{ $stacked }}>
{{ $this->form }}
<x-filament::button wire:click="save" color="primary" :icon="Heroicon::CheckCircle">
{{ __('filament-watermark.save') }}
</x-filament::button>
</div>
</x-filament::section>
</x-filament::page>