@if ($message = Session::get('payment-success'))
Order # : {{ Session::get('transaction_id') }}
Amount : {{ Session::get('amount') }}
We are pleased to confirm the receipt of your payment. Your information has been received. We we contact you for further action on this matter.
Ok
@endif
@if ($message = Session::get('payment-declined'))
Payment declined
There seems to be a problem in processing the payment. If the problem persists kindly send us an email at service@bache.com.sg
@endif
@if ($message = Session::get('payment-error'))
Error
- {{ $message }}
@endif
@if ($message = Session::get('success'))
Success
- {{ $message }}
@endif
@if ($message = Session::get('image'))
Success
- S3 bucket Path: {{ $message }}
@endif
@if ($message = Session::get('error'))
Error
- {{ $message }}
@endif
@if ($message = Session::get('warning'))
Warning -
{{ $message }}
@endif
@if ($message = Session::get('info'))
Info -
{{ $message }}
@endif
@if ($errors->any())
Check the following errors :(
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif