@php $domainStyles = [ 'loancamp.ai' => 'assets/css/login_style.css', 'loancamp.xlnc.info' => 'assets/css/login_style.css' ]; // Fallback to default CSS if the domain is not listed $cssFile = $domainStyles[request()->getHost()] ?? 'assets/css/login_style_instarefi.css'; @endphp Login @include('analytics') @include('noscript')
@php $encryptedUserId = request()->route('encryptedUserId'); $isResubscribe = isset($is_resubscribe) && $is_resubscribe; @endphp @if($isResubscribe)

Resubscription Verification!

We have sent you a verification code to your email to confirm your resubscription to follow-up emails.
If you haven't received it, click here.

@if($errors->any())
{{$errors->first('verification_code')}}
@endif
@csrf
@else

Two Factor Verification!

We have sent you a verification code to your email. Please check your inbox to log in.
If you haven't received it, click here.

@if($errors->any())
{{$errors->first('two_factor_code')}}
@endif
@csrf
@endif
@php($slug = session('url_key')) @php($signupUrl = $slug ? route('register', ['id' => $slug]) : route('register'))