1234567891011121314151617 |
- <x-filament-panels::page style="margin-bottom: 500px">
- <x-filament-panels::form wire:submit="save">
- {{ $this->form }}
-
- <x-filament-panels::form.actions
- :actions="$this->getCachedFormActions()"
- :full-width="$this->hasFullWidthFormActions()"
- />
- </x-filament-panels::form>
- </x-filament-panels::page>
- <script>
- document.addEventListener('livewire:init', function () {
- Livewire.on('localizationUpdated', function () {
- window.location.reload();
- });
- });
- </script>
|