您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

default-setting.blade.php 359B

12345678910111213
  1. <div>
  2. <form wire:submit.prevent="save">
  3. {{ $this->form }}
  4. <div class="mt-6">
  5. <div class="flex flex-wrap items-center gap-4 justify-start">
  6. <x-filament::button type="submit">
  7. {{ __('Save Changes') }}
  8. </x-filament::button>
  9. </div>
  10. </div>
  11. </form>
  12. </div>