{{ $app_settings->login_hero_title ?? 'Welcome back!' }}

{{ $app_settings->login_hero_subtitle ?? 'Sign in to access your account and keep your operations in sync.' }}

{{ $app_settings->login_panel_title ?? 'Sign In' }}

{{ $app_settings->login_panel_subtitle ?? 'Access your dashboard and manage everything from one place.' }}

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@
••