@php $logo = get_setting('app_logo'); @endphp {{-- Logo & Intro --}}
logo
{{ $app_tagline1 ?? '' }}
{{ $app_tagline ?? '' }}
{{-- Alert Session Status (Login feedback) --}} @if (session('status'))
{{ session('status') }}
@endif @if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{-- Login Form --}}
@csrf {{-- Email Input --}}
{{-- Password Input --}}
{{-- Options: Remember + Forgot Password --}}
@if (Route::has('password.request')) Forgot Password? @endif
{{-- Captcha --}} @if(get_setting('captcha_enabled', false))
{!! NoCaptcha::display() !!}
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif {!! NoCaptcha::renderJs() !!} @endif {{-- Submit --}} @if(get_setting('webauthn_enabled', false)) @endif {{-- Social Logins --}}
@if(get_setting('feature_google_oauth', false)) @endif @if(get_setting('feature_facebook_oauth', false)) @endif @if(get_setting('feature_github_oauth', false)) @endif
@if(get_setting('webauthn_enabled', false)) @endif
{{-- Footer --}} {{ $footer_text }}