{{-- resources/views/auth/login.blade.php --}} @extends('layouts.auth') @section('title', 'Sign In - PangoQ') @section('hero-title', 'Welcome Back to Your Journey') @section('hero-subtitle', 'Continue exploring amazing destinations and planning unforgettable experiences with PangoQ.') @section('content')

Welcome back

Sign in to continue your travel planning journey

Continue with Google Continue with Facebook
Or sign in with email
@if (session('status'))
{{ session('status') }}
@endif @if(session('message') || isset($hasTripData) && $hasTripData)
{{ session('message') ?: 'Sign in to save your trip planning progress. Your selections will be preserved after login.' }}
@endif @if ($errors->any())

Please fix the following errors:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(Route::has('password.request')) Forgot password? @endif

Don't have an account? Create a free account

Secure Login
Privacy Protected

By signing in, you agree to our Terms of Service and Privacy Policy

50K+
Happy Travelers
200+
Destinations
4.9★
User Rating
@endsection