@php // Page content use Illuminate\Support\Facades\DB; use App\Setting; // Get settings $settings = Setting::where('status', 1)->first(); $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.index', ['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