@extends('frontend.user.layouts.auth') @section('title', 'Login') @section('content')
@if (is_demo())

{{ __('You can create your own account or log in with the demo account.') }}

{{ __('Email') }} {{ __('Password') }}
{{ __('user@demo.com') }} {{ __('123456789') }}
@endif

{{ translate('Welcome Back!', 'auth') }}

{{ translate('Please log in to your account to continue.', 'auth') }}

@if ($errors->has('ban')) @endif
@csrf
@if (getSetting('captcha_login')) @if (getSetting('captcha') == 'hcaptcha' && isPluginEnabled('hcaptcha'))
{!! HCaptcha::script() !!} {!! HCaptcha::display() !!}
@elseif(getSetting('captcha') == 'recaptcha' && isPluginEnabled('recaptcha'))
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!}
@endif @endif
@php $facebookLoginEnabled = isPluginEnabled('facebook_login'); $googleLoginEnabled = isPluginEnabled('google_login'); @endphp @if ($facebookLoginEnabled || $googleLoginEnabled)
{{ translate('Or log in with', 'auth') }}
@if ($facebookLoginEnabled) {{ translate('Continue with Facebook', 'auth') }} @endif @if ($googleLoginEnabled) {{ translate('Continue with Google', 'auth') }} @endif
@endif

{{ translate('Don’t have an account?', 'auth') }} {{ translate('Sign up now', 'auth') }}

@endsection