@extends('layouts.app') @section('title') Add Cancel Receipt @stop @section('breadcrumb') @stop @section('content')
{{ csrf_field() }}
@if ($errors->any())

Errors

    {!! implode( '', $errors->all('
  • :message
  • '), ) !!}
@endif

Payment Information


@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('customer_id')) {{ $errors->first('customer_id') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('payment_method')) {{ $errors->first('payment_method') }} @endif


@if ($errors->has('receipt_no')) {{ $errors->first('receipt_no') }} @endif
@if ($errors->has('receipt_date')) {{ $errors->first('receipt_date') }} @endif
@if ($errors->has('notes')) {{ $errors->first('notes') }} @endif
@stop @section('js') @stop @if ($errors->any()) @endif