@extends('customer.auth.layout') @section('title','Login') @section('subtitle','Sign in to track your orders') @section('content')

Welcome Back 👋

Track deliveries, view order history and manage your account from one smart dashboard.

  • Real-time parcel tracking
  • Secure payments & invoices
  • AI-powered delivery insights
© {{ date('Y') }} SriCourier
@csrf {{-- SUCCESS --}} @if (session('success'))
{{ session('success') }}
@endif {{-- ERROR --}} @if (session('error'))
{{ session('error') }}
@endif {{-- VALIDATION --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection @push('scripts') @endpush