12345678910111213141516171819
  1. <!-- resources/views/filament/pages/auth/login.blade.php -->
  2. <x-filament-panels::page.simple>
  3. @if (filament()->hasRegistration())
  4. <x-slot name="subheading">
  5. {{ __('filament-panels::pages/auth/login.actions.register.before') }}
  6. {{ $this->registerAction }}
  7. </x-slot>
  8. @endif
  9. <x-filament-panels::form wire:submit="authenticate">
  10. {{ $this->form }}
  11. <x-filament-panels::form.actions
  12. :actions="$this->getCachedFormActions()"
  13. :full-width="$this->hasFullWidthFormActions()"
  14. />
  15. </x-filament-panels::form>
  16. </x-filament-panels::page.simple>