@php // Page content use Illuminate\Support\Facades\DB; $config = DB::table('config')->get(); $supportPage = DB::table('pages')->where('page_name', 'footer')->orWhere('page_name', 'contact')->get(); // Default $navbar = true; $footer = true; if ($config[38]->config_value == "no") { $navbar = false; $footer = false; } @endphp @extends('layouts.web', ['nav' => $navbar, 'banner' => false, 'footer' => $footer, 'cookie' => false, 'setting' => true, 'title' => true, 'title' => __('Sign In')]) @section('content') {{-- Login page --}}

{{ __('Sign In') }}

{{ __('Sign in your account') }}

{{-- Login --}}
@csrf
{{-- Email address --}}

{{ __('Email address') }}

@error('email') {{ $message }} @enderror {{-- Password --}}

{{ __('Password') }}

{{-- Show password --}} @error('password') {{ $message }} @enderror {{-- Recaptcha --}} @if ($settings->recaptcha_configuration['RECAPTCHA_ENABLE'] == 'on')
{!! htmlFormSnippet() !!}
@endif
{{-- Forget password --}}
{{-- Signin with Google --}} @if ($settings->google_configuration['GOOGLE_ENABLE'] == 'on') @endif @if(Route::has('register'))

{{ __('If you do not have an account?') }} {{ __('Create free account') }}

@endif
{{-- Custom JS --}} @section('custom-js') @endsection @endsection