@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' => 'Confirmation Password']) @section('custom-script') @endsection @section('content') {{-- Confirm page --}} {{ __('Confirm Password') }} {{ __('Please confirm your password before continuing.') }} {{-- Reset form --}} @csrf {{-- Password --}} {{ __('Password') }} {{-- Show password --}} {{ __('Show / Hide Password')}} @error('password') {{ $message }} @enderror {{ __('Confirm Password') }} {{-- Request password --}} @if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif {{-- Custom JS --}} @section('custom-js') @endsection @endsection
{{ __('Please confirm your password before continuing.') }}
{{ __('Password') }}
{{ __('Confirm Password') }}
{{ __('Forgot Your Password?') }}