/home/awneajlw/.trash/storage.2/framework/views/55dc361bd04d5b49aac7746d78929247.php
<?php echo $__env->make('admin.component.header', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('admin.component.topnav', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php echo $__env->make('admin.component.navbar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<div class="content-body">
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="card">
<div class="card-body">
<h4 class="text-uppercase"><?php echo e(__('SE.update_zakat_status')); ?></h4>
<form action="<?php echo e(route('admin.zakat.update', $zakatRecord->id)); ?>" method="POST">
<?php echo csrf_field(); ?>
<div class="form-group">
<label for="status"><?php echo e(__('SE.zakat_payment_status')); ?></label>
<select name="status" id="status" class="form-control">
<option value="unpaid" <?php echo e($zakatRecord->status == 'unpaid' ? 'selected' : ''); ?>><?php echo e(__('SE.unpaid')); ?></option>
<option value="paid" <?php echo e($zakatRecord->status == 'paid' ? 'selected' : ''); ?>><?php echo e(__('SE.paid')); ?></option>
</select>
</div>
<button type="submit" class="btn btn-success"><?php echo e(__('SE.submit')); ?></button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<?php echo $__env->make('admin.component.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php /**PATH C:\xampp\htdocs\safeEye\resources\views/admin/zakat/edit.blade.php ENDPATH**/ ?>