@extends('admin.layouts.auth') @section('title', 'Login') @section('content')

{{ __('Login') }}

{{ __('Continue to ') . getSetting('site_name') }}

@csrf
@if (is_demo())
@else
@endif @if (is_demo())
@else
@endif
@if (getSetting('captcha_admin')) @if (getSetting('captcha') == 'hcaptcha' && isPluginEnabled('hcaptcha'))
{!! HCaptcha::script() !!} {!! HCaptcha::display() !!}
@elseif(getSetting('captcha') == 'recaptcha' && isPluginEnabled('recaptcha'))
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!}
@endif @endif
@endsection