ÿØÿÛ C 

ÿØÿÛ C 

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="csrf-token" content="{{ csrf_token() }}">
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width,initial-scale=1.0" />
    <link rel="stylesheet" href="/css/master.css">
    
    <link rel="icon" href="{{ asset('images/' . ($app_settings->favicon ?? 'favicon.ico')) }}">
    <title>{{ $app_settings->app_name ?? 'Stocky | Ultimate Inventory With POS' }}</title>
    <style>
      .auth-wrapper{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#f5f7ff,#eef9ff);padding:24px}
      .auth-card{width:100%;max-width:480px;background:#fff;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.08);padding:28px}
      .auth-brand{display:flex;justify-content:center;margin-bottom:12px}
      .auth-brand img{max-height:56px}
      .auth-title{margin:10px 0 2px 0;font-size:22px;line-height:1.2;text-align:center}
      .auth-subtitle{margin:0 0 18px 0;color:#6b7280;text-align:center;font-size:14px}
      .form-group{margin-bottom:14px}
      .form-group label{display:block;margin-bottom:8px;font-weight:600;font-size:13px;color:#374151}
      .auth-input{width:93%;padding:12px 14px;border:1px solid #e5e7eb;border-radius:10px;font-size:14px;outline:none;transition:border-color .2s, box-shadow .2s}
      .auth-input:focus{border-color:#6366f1;box-shadow:0 0 0 3px rgba(99,102,241,.15)}
      .auth-btn{width:100%;padding:12px 14px;border:none;border-radius:10px;background:#4f46e5;color:#fff;font-weight:700;cursor:pointer;transition:background .15s}
      .auth-btn:hover{background:#4338ca}
      .auth-alert{padding:10px 12px;border-radius:10px;font-size:13px;margin-bottom:12px}
      .auth-alert.success{background:#ecfdf5;color:#065f46;border:1px solid #a7f3d0}
      .auth-alert.error{background:#fef2f2;color:#991b1b;border:1px solid #fecaca}
      .auth-actions{display:flex;justify-content:center;margin-top:10px}
      .auth-link{font-size:13px;color:#4f46e5;text-decoration:none}
      .auth-link:hover{color:#4338ca;text-decoration:underline}
    </style>
  </head>
  <body class="text-left">
    <noscript>
      <strong>
        We're sorry but Stocky doesn't work properly without JavaScript
        enabled. Please enable it to continue.</strong>
    </noscript>
    <div class="auth-wrapper">
      <div class="auth-card">
        <div class="auth-brand">
          <img src="{{ asset('images/' . ($app_settings->logo ?? 'logo.png')) }}" alt="logo" />
        </div>
        @if (session('status'))
        <div class="auth-alert success" role="alert">
          {{ session('status') }}
        </div>
        @endif
        @if ($errors->any())
        <div class="auth-alert error">
          <ul>
            @foreach ($errors->all() as $error)
            <li>{{ $error }}</li>
            @endforeach
          </ul>
        </div>
        @endif
        <h1 class="auth-title">{{ __('Forgot your password?') }}</h1>
        <p class="auth-subtitle">{{ __('Enter your email to receive a reset link.') }}</p>
        <form method="POST" action="{{ route('password.email') }}" novalidate>
          @csrf
          <div class="form-group">
            <label for="email">{{ __('E-Mail Address') }}</label>
            <input id="email" type="email" name="email" class="auth-input" value="{{ old('email') }}" required autocomplete="email" autofocus />
          </div>
          <button type="submit" class="auth-btn">{{ __('Send Password Reset Link') }}</button>
        </form>
        <div class="auth-actions">
          <a class="auth-link" href="{{ route('login') }}">{{ __('Back to login') }}</a>
        </div>
      </div>
    </div>
  </body>
</html>