29 lines
1.3 KiB
PHP
29 lines
1.3 KiB
PHP
<div class="modal fade" id="reject-modal" tabindex="-1" aria-hidden="true">
|
|
<div class="modal-dialog modal-dialog-centered">
|
|
<div class="modal-content rounded-3 border-0">
|
|
<div class="modal-header border-bottom">
|
|
<h5 class="modal-title fw-bold">{{ __('Why Reject Withdrawal Payment') }}</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
|
|
<form action="" method="POST" class="ajaxform_instant_reload modalRejectForm">
|
|
@csrf
|
|
<div class="modal-body">
|
|
<div class="">
|
|
<label for="reason" >{{ __('Enter Reason') }}</label>
|
|
<textarea name="note" rows="4" class="form-control" placeholder="{{ __('Enter reason...') }}"></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-lg-12">
|
|
<div class="button-group text-center mt-3">
|
|
<button type="reset" class="theme-btn border-btn m-2">{{__('Cancel')}}</button>
|
|
<button class="theme-btn m-2 submit-btn">{{__('Submit')}}</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|