<?php $__env->startSection('title', __('locale.labels.pay_payment')); ?>
<?php $__env->startSection('page-style'); ?>
<style>
.card-body p {
line-height: 0.8;
}
</style>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<!-- Basic Vertical form layout section start -->
<section id="basic-vertical-layouts">
<div class="row match-height">
<div class="col-md-6 col-12">
<div class="card">
<div class="card-header"></div>
<div class="card-content">
<div class="card-body">
<?php echo $data->payment_details; ?>
<br>
<h6 class="text-uppercase">For <?php echo e(__('locale.labels.payment_confirmation')); ?>:</h6>
<?php echo $data->payment_confirmation; ?>
<form action="<?php echo e(route('customer.payment.offline', $type)); ?>" method="post" class="mt-2">
<input type="hidden" name="post_data" value="<?php echo e($post_data); ?>">
<button type="submit" class="btn btn-success me-1 btn-submit">Claim Payment</button>
<a href="<?php echo e(route('user.home')); ?>" class="btn btn-primary"><?php echo e(__('locale.buttons.back')); ?></a>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- // Basic Vertical form layout section end -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts/contentLayoutMaster', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bouloter/sms/resources/views/customer/Payments/offline.blade.php ENDPATH**/ ?>