@extends('layouts.app') @section('content')

Add New Customer Profile & Bill

Register a customer profile and automatically initialize their ledger invoice entry.

Back to List
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- Validation Errors Handling Node --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Initial Billing Ledger Info

Cancel
@endsection