@extends('layouts.app') @section('title') Add Payment @stop @section('breadcrumb') @stop @section('content')
{{csrf_field()}}

Payment Information


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


@if ($errors->has('payment_mode')) {{ $errors->first('payment_mode') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif

Receipt Information


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