@extends('business.partials.layout') @section('css') @endsection @section('content')

Sale Invoice

@csrf

Invoice Info

@if($errors->has('date'))

{{ $errors->first('date') }}

@endif
@if($errors->has('due_date'))

{{ $errors->first('due_date') }}

@endif
@if($errors->has('ref'))

{{ $errors->first('ref') }}

@endif
@if($errors->has('is_paid'))

{{ $errors->first('is_paid') }}

@endif
@if($errors->has('customer'))

{{ $errors->first('customer') }}

@endif
@if($errors->has('description'))

{{ $errors->first('description') }}

@endif

Invoice Items


Invoice Summary



Additional Details

@endsection @section('js') @endsection