← Back to customers
{{-- Step: Upload --}} @if ($step === 'upload')

Import from GST Certificate

Upload a customer's GST Registration Certificate (Form GST REG-06). Nothing is created until you review and confirm the extracted details.

Uploading…
@endif {{-- Step: Preview --}} @if ($step === 'preview')

Review extracted details

Check every field below — nothing was invented, but OCR and layout quirks happen. Edit anything before creating the customer.

@if (! empty($warnings))
@foreach ($warnings as $warning)
⚠ {{ $warning }}
@endforeach
@endif @if ($this->duplicateCustomer)
A customer with this GSTIN already exists: {{ $this->duplicateCustomer->name }} — creating a new one is disabled to avoid a duplicate.
@endif
@endif {{-- Step: Done --}} @if ($step === 'done')
Customer created

The customer has been created from the GST certificate.

@endif