@extends('layouts.auth') @section('title', 'Login') @section('content') {{ config('app.name', 'Hotel SaaS') }} @csrf SIGN IN @if($errors->any() && ! $errors->has('email') && ! $errors->has('password')) {{ $errors->first() }} @endif EMAIL @error('email'){{ $message }}@enderror PASSWORD @error('password'){{ $message }}@enderror Stay Signed in SIGN IN @endsection