@include("include.css")

Sign Up

Create your account to get started

{{-- Server-side errors (field-level shown inline; catch-all here) --}} @if ($errors->hasAny(['role','referralCode','referralName','first_name','last_name','password']))
@foreach (['role','referralCode','referralName','first_name','last_name','password'] as $field) @error($field)
{{ $message }}
@enderror @endforeach
@endif
@csrf
{{-- ── Registration Type ── --}}
{{ $errors->first('role') }}
{{-- ── Referral Code ── --}}
{{ $errors->first('referralCode') }}
{{-- ── Referral Name ── --}}
{{ $errors->first('referralName') }}
{{-- ── First Name ── --}}
{{ $errors->first('first_name') }}
{{-- ── Last Name ── --}}
{{ $errors->first('last_name') }}
{{-- ── Email ── --}}
{{ $errors->first('email') }}
{{-- ── Mobile Number — +91 prefix ── --}}
+91 {{-- We store only the 10-digit part in the hidden input. The visible input is purely for display / validation. On form submit, JS copies it to #mobile (hidden). --}}
⏳ Checking… {{-- Hidden field that actually gets submitted --}} {{ $errors->first('mobile') }}
{{-- ── Password ── --}}
{{ $errors->first('password') }}
{{-- ── Confirm Password ── --}}
{{-- ── Submit ── --}}
Already have an account? Login
{{-- /row --}}
@include("include.js")