@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
@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($global->enable_register == true)

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

@endif

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

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