@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; $registered = request('status') == 'success' ? true : false; $status = request('status') == 'success' ? 'active' : ''; if (isset($config[38]) && $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' => 'Sign Up','background' => '#ffffff']) @section('custom-script') @endsection @section('content')
Bizlite
Loading
{{-- Register page --}}

{{ __('Sign Up') }}

@if(!$registered)
@include('auth.partials.personal-info')
@include('auth.partials.card_types')
@endif
@include('sweet::alert') @if (Session::has('toast_error'))
{!! Session::pull('toast_error') !!}
@if(config('sweetalert.animation.enable')) @endif @if (config('sweetalert.alwaysLoadJS') === false && config('sweetalert.neverLoadJS') === false) @endif @endif {{-- Custom JS --}} @section('custom-js') @if($registered) @endif @endsection @endsection