@extends('layouts.app') @section('title', isset($customer) ? 'Edit Customer' : 'Add Customer') @section('page-title', isset($customer) ? 'Edit Customer' : 'Add Customer') @section('content')
@csrf @if(isset($customer)) @method('PUT') @endif
{{-- Basic Info --}}

Customer Details

@error('name')

{{ $message }}

@enderror
@error('gstin')

{{ $message }}

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

Billing Address

{{-- Credit Settings --}}

Credit & Balance

Cancel
@endsection