@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') { $footer = false; } @endphp @extends('GoBizOriginal::Website.layouts.index', ['nav' => $navbar, 'banner' => false, 'footer' => $footer, 'cookie' => false, 'setting' => true, 'title' => true, 'title' => 'Two Factor Authentication']) @section('custom-script') @endsection @section('content') {{-- Confirm page --}}

{{ __('Two Factor Authentication') }}

{{ __('Please enter the OTP that received in your email.') }}

@if (session('success')) @endif @if (session('message')) @endif
@csrf

{{ __('OTP (One Time Password)') }}

@if (session('error')) {{ session('error') }} @endif

{{ __('Resend OTP') }}00:30

@section('custom-js') @endsection @endsection