@extends('frontend.app') @section('content') @php use App\Models\Information; $information = Information::first(); // ✅ same as header $brandGradient = $information->gradient_code ?? 'linear-gradient(90deg,#0d6efd,#00276C)'; $brandText = $information->primary_color ?? '#ffffff'; @endphp
@csrf
{{-- HEADER --}}

Sign In

Access your account securely

{{-- BODY --}}
{{-- Global Errors --}} @if ($errors->any())
{{ $errors->first() }}
@endif

Welcome Back

Enter your email and password to continue.


{{-- EMAIL --}}
@error('email') {{ $message }} @enderror
{{-- PASSWORD --}}
@error('password') {{ $message }} @enderror
{{-- LOGIN BUTTON --}} {{-- REGISTER LINK --}}
New here? Create an account
@endsection