@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 {{-- Custom CSS --}} @section('css') @endsection @extends('layouts.index', ['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') }} {{-- Alert --}} @if(session('error')) Error! {{ session('error') }} @endif {{-- Login --}} @csrf {{-- Email address --}} {{ __('Email address') }} * @error('email') {{ $message }} @enderror {{-- Password --}} {{ __('Password') }} * {{-- Show/Hide Password Button --}} {{ __('Show / Hide Password') }} @error('password') {{ $message }} @enderror {{-- Recaptcha --}} @if ($settings->recaptcha_configuration['RECAPTCHA_ENABLE'] == 'on') {!! htmlFormSnippet() !!} @endif {{-- Forget password --}} {{ __('Forgot Your Password?') }} {{ __('Login') }} {{-- Signin with Google --}} @if ($settings->google_configuration['GOOGLE_ENABLE'] == 'on') {{ __('Continue with Google') }} @endif @if(Route::has('register')) {{ __('If you do not have an account?') }} {{ __('Create free account') }} @endif {{-- Custom JS --}} @section('custom-js') @endsection @endsection
{{ __('Sign in your account') }}
{{ __('Password') }} *
{{ __('Login') }}
{{ __('If you do not have an account?') }} {{ __('Create free account') }}