@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('GoBizOriginal::Website.layouts.index', ['nav' => $navbar, 'banner' => false, 'footer' => $footer, 'cookie' => false, 'setting' => true, 'title' => true, 'title' => __('Verify')]) @section('custom-script') @endsection @section('content') {{-- Verify page --}} {{-- Left image --}} {{-- Right form --}} {{ __('Verify Your Email Address') }} {{-- Error --}} @if(session('error')) {{ __('Error!') }} {{ session('error') }} @endif {{-- Message --}} @if (session('message')) {{ session('message') }} @endif {{-- Status --}} @if (session('status')) {{ session('status') }} @endif {{ __('A verification link will be sent to your email. Enter your email below to resend the verification email.') }} {{-- Public Verification form --}} @csrf {{ __('Email address') }} * @error('email') {{ $message }} @enderror {{ __('click here to request another') }} @endsection
{{ __('A verification link will be sent to your email. Enter your email below to resend the verification email.') }}
{{ __('Email address') }} *
{{ __('click here to request another') }}