@php $serverTime = new DateTime('now'); $pstTime = clone $serverTime; $pstTime->setTimezone(new DateTimeZone('America/Los_Angeles')); // PST timezone $time = $serverTime->format('H'); @endphp @if ($time < '12') Good Morning! Today is {{ $pstTime->format('D m/d h:i A') }} @elseif ($time >= '12' && $time < '17') Good Afternoon! Today is {{ $pstTime->format('D m/d h:i A') }} @elseif ($time >= '17' && $time < '19') Good Evening! Today is {{ $pstTime->format('D m/d h:i A') }} @elseif ($time >= '19') Good Night! Today is {{ $pstTime->format('D m/d h:i A') }} @endif

Logo
@csrf

Sign In

@if (session()->has('success'))

{{ session()->get('success') }}

{{ session()->forget('success') }} @endif @if (session()->has('error'))

{{ session()->get('error') }}

{{ session()->forget('error') }} @endif
@error('username')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror