@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' => 'Verify']) @section('custom-script') @endsection @section('content') {{-- Verify page --}}

{{ __('Verify Your Email Address') }}

{{-- Resent message --}} @if (session('resent')) @endif

{{ __('Before proceeding, please check your email for a verification link.') }}

{{ __('If you did not receive the email') }},

{{-- Verification form --}}
@csrf
@endsection