esg-main.blade.php 514B

123456789101112131415161718
  1. <x-filament-panels::page>
  2. {{-- ✅ 確保不直接輸出陣列 --}}
  3. <form wire:submit="save">
  4. {{ $this->form }}
  5. <div class="mt-6">
  6. <x-filament::button
  7. type="submit"
  8. color="primary"
  9. wire:loading.attr="disabled"
  10. >
  11. <span wire:loading.remove>儲存設定</span>
  12. <span wire:loading>儲存中...</span>
  13. </x-filament::button>
  14. </div>
  15. </form>
  16. </x-filament-panels::page>