@extends('layouts.auth') @section('content')
{{ csrf_field() }} @if (session('message'))
{{ session('message') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{-- @php dd($global); @endphp--}} @if ($global->google_recaptcha_status && $global->google_captcha_version == 'v2')
@if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
@endif
@lang('app.forgotPassword')?
@if (isset($socialAuthSettings) && !module_enabled('Subdomain')) @if ($socialAuthSettings && $socialAuthSettings->facebook_status == 'enable') @endif @if ($socialAuthSettings->google_status == 'enable') @endif @if ($socialAuthSettings->twitter_status == 'enable') @endif @if ($socialAuthSettings->linkedin_status == 'enable') @endif @endif
@if (!module_enabled('Subdomain')) @if ($setting->enable_register == true)

@lang('messages.dontHaveAccount') @lang('app.signup')

@endif @if (!$setting->frontend_disable)

@lang('messages.goToWebsite') @lang('app.home')

@endif @endif
@endsection @if ($global->google_recaptcha_status && $global->google_captcha_version == 'v3') @endif