@extends('layouts.guest') @section('title', 'Login - Hotel Management System') @section('content')

Welcome Back

Sign in to your hotel management account

@if ($errors->any())

@if ($errors->has('email') || $errors->has('password')) Invalid email or password @else {{ $errors->first() }} @endif

@endif
@csrf
@error('email')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
Forgot password?
Demo Credentials
Email: admin@mandala.local
Password: password

Don't have an account? Register here

@endsection