@extends('layouts.app') @section('title', 'Verify Treasury Receipt - ERAS') @section('content')
{{-- Hero Section --}}

Verify Treasury Receipt

This section helps in verifying treasury receipts.

{{-- Content Section --}}

Verify Treasury Receipt

@if(session('error'))
{{ session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif @if(isset($trValid) && $trValid === true)

The bill number and receipt number you submitted are valid.

  • This is a true Treasury Receipt
  • @if(isset($trDocumentUrl))
  • To View Treasury Receipt Click Here
  • @endif
@elseif(isset($trValid) && $trValid === false)

The bill number and receipt number entered are invalid. Possible causes for this failure are:

  • The receipt number is not a valid receipt number
  • The bill number is not a valid bill number
@endif
@csrf
@error('BillNumber')

{{ $message }}

@enderror
@error('ReceiptNumber')

{{ $message }}

@enderror
@endsection