@extends('layouts.app') @section('title', 'Business Profile') @section('page-title', 'Business Profile') @section('content')
@csrf @method('PUT')
{{-- Left column --}}
{{-- Basic Info --}}

Business Information

@error('business_name')

{{ $message }}

@enderror
{{-- GST & Tax --}}

GST & Tax Details

gst_registered) ? 'checked' : '' }} @change="gstRegistered = $event.target.checked" class="rounded border-gray-300 text-indigo-600 w-4 h-4">
@error('gstin')

{{ $message }}

@enderror
@error('pan')

{{ $message }}

@enderror
{{-- Address --}}

Registered Address

{{-- Invoice Settings --}}

Invoice Settings

{{-- Bank Details --}}

Bank Details (for invoice)

{{-- Right column: Logo & Branding --}}

Logo & Branding

{{-- Logo preview --}}
@if($profile->logo) @else @endif

PNG, JPG, SVG up to 2MB

@if($profile->logo) @csrf @method('DELETE') @endif
{{-- Brand colors --}}
{{-- Status card --}}

Profile Status

@if($profile->is_complete) ✓ Profile Complete @else ⚠ Incomplete

Fill all required fields to unlock all features.

@endif

{{ $profile->gstin ? '✓' : '○' }} GSTIN: {{ $profile->gstin ?: 'Not set' }}

{{ $profile->pan ? '✓' : '○' }} PAN: {{ $profile->pan ?: 'Not set' }}

{{ $profile->logo ? '✓' : '○' }} Logo uploaded

{{ $profile->bank_details ? '✓' : '○' }} Bank details

{{-- Save --}}
@push('scripts') @endpush @endsection