@extends('layouts.guest') @section('title', 'Create an Account') @section('content') Let's get you set up It should only take a couple of minute to create your account. @if (Session::has('status')) {{ session('status') }} × @endif @csrf Username * @if ($errors->has('username')) {{ $errors->first('username') }} @endif Full Name * @if ($errors->has('name')) {{ $errors->first('name') }} @endif Email Address * @if ($errors->has('email')) {{ $errors->first('email') }} @endif Phone Number * @error('phone') {{ $errors->first('phone') }} @enderror Password * @if ($errors->has('password')) {{ $errors->first('password') }} @endif Confirm Password * Country * Choose Country @include('auth.countries') @if ($errors->has('country')) {{ $errors->first('country') }} @endif @if (Session::has('ref_by')) Referral ID * @else Referral ID @endif @if ($settings->captcha == 'true') Captcha* {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif @endif @if ($terms->useterms == 'yes') I Accept the Terms And Privacy Policy @endif Register @if ($settings->enable_social_login == 'yes') Or Sign in with Google @endif Already have an account Login © Copyright {{ date('Y') }} {{ $settings->site_name }} All Rights Reserved. @endsection @section('scripts') @parent @endsection
It should only take a couple of minute to create your account.
Already have an account Login