@extends('maindash5') @section('htmlheader_title') Make Payment @endsection @section('content')
@if (session('status'))
{{ session('status') }}
@endif
Payment Gateway Transfer Funds Setup


{!! Form::open(['url' => 'ptran', 'autocomplete'=>'off']) !!}
{!! Form::label('_id', 'Customer ID Number:') !!} {!! Form::text('customer_id', null, ['class' =>'form-control']) !!} {!! Form::label('paymentId', 'Invoice Number:') !!} {!! Form::text('paymentId', null, ['class' =>'form-control']) !!} {!! Form::label('value', 'Invoice Total:') !!} {!! Form::text('value', null, ['class' =>'form-control']) !!}
{!! Form::submit('Submit', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!} @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Open Invoice Table
Location Name Invoice Number Invoice Date Invoice Total Due
@endsection