{{-- PWA --}} {{ $app_settings->app_name ?? 'Stocky | Ultimate Inventory With POS' }}
{{ $app_settings->login_hero_badge ?? 'Secure & Reliable' }}

{{ $app_settings->login_hero_title ?? 'Manage your business smarter.' }}

{{ $app_settings->login_hero_subtitle ?? 'Streamline inventory, track sales, and grow your business — all from one powerful dashboard.' }}

@php $features = [ $app_settings->login_hero_feature_1 ?? 'Real-time inventory tracking', $app_settings->login_hero_feature_2 ?? 'Multi-location POS support', $app_settings->login_hero_feature_3 ?? 'Advanced reporting & analytics', ]; @endphp @foreach ($features as $feature) @if ($feature)
{{ $feature }}
@endif @endforeach

{{ $app_settings->login_panel_title ?? 'Welcome back' }}

{{ $app_settings->login_panel_subtitle ?? 'Sign in to your account to continue' }}

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Forgot password?
{{-- Login page is intentionally NOT a PWA surface: no service worker is registered here. The SW is registered on the authenticated app shell instead, so the login HTML (which carries a session-specific CSRF token) is always served fresh from the network. --}}