@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' => 'Sign Up']) @section('content') {{-- Register page --}}

{{ __('Sign Up') }}

{{ __('Join the digital business card revolution and simplify your networking.') }}

{{-- Register form --}}
@csrf
{{-- Name --}}

{{ __('Full Name') }}

@error('name') {{ $message }} @enderror {{-- Email --}}

{{ __('Email address') }}

@error('email') {{ $message }} @enderror {{-- Password --}}

{{ __('Password') }}

{{-- Show password --}} @error('password') {{ $message }} @enderror {{-- Confirm Password --}}

{{ __('Confirm Password') }}

@error('password') {{ $message }} @enderror {{-- Recaptcha --}} @if ($settings->recaptcha_configuration['RECAPTCHA_ENABLE'] == 'on')
{!! htmlFormSnippet() !!}
@endif

{{ __('I agree to the') }} {{ __('Terms & Conditions') }} {{ __('of') }} {{ config('app.name') }}.

{{ __('Already have an account?') }} {{ __('Login now') }}

{{-- Custom JS --}} @section('custom-js') @endsection @endsection