@extends('layouts.app') @section('title', 'Create Customer') @section('content')
{{-- Hero Header --}}

Create Customer

Add a new customer to your directory

Back to Customers
@csrf {{-- Basic Information --}}

Basic Information

Customer identity and currency preferences

{{-- Tax Information --}}

Tax Information

GST and PAN details

{{-- GST Number with live validation --}}

Invalid GST format. Expected: 2 digits + 5 letters + 4 digits + 1 letter + 1 alphanumeric + Z + 1 alphanumeric

State:

Format: 22AAAAA0000A1Z5 (15 characters)

@error('gst_number')

{{ $message }}

@enderror
{{-- PAN Number with live validation --}}

Invalid PAN format. Expected: 5 letters + 4 digits + 1 letter

Type:

Format: ABCDE1234F (10 characters)

@error('pan_number')

{{ $message }}

@enderror
{{-- Contact --}}

Contact

Email and phone numbers

{{-- Email with format validation --}}

Please enter a valid email address.

This email is already registered.

@error('email')

{{ $message }}

@enderror
{{-- WhatsApp with country code dropdown --}}
{{-- Hidden input for actual submission --}}
{{-- Country Code Dropdown --}}
  • No results found
{{-- Phone Input --}}

Enter digits only (7–15 digits).

This WhatsApp number is already registered.

@error('whatsapp_number')

{{ $message }}

@enderror
{{-- Alternate Number with country code --}}
  • No results found
@error('alternate_number')

{{ $message }}

@enderror
{{-- Billing Address --}}

Billing Address

Primary billing location

{{-- Shipping Address --}}

Shipping Address

Delivery location

{{-- Status --}}

Status

Activate or deactivate this customer

{{-- Submit --}}
Cancel Create Customer
@endsection