migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
<div class="modal fade common-validation-modal" id="adjust-cash">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5">{{__('Adjust Cash')}}</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="personal-info">
<form action="" method="post" class="ajaxform_instant_reload">
@csrf
<div class="row">
<div class="col-lg-12 mb-3">
<div class="form-check">
<input class="form-check-input" type="radio" name="type" id="addCash" value="credit">
<label class="form-check-label cash-label" for="addCash">
{{__('Add Cash')}}
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="type" id="reduceCash" value="debit">
<label class="form-check-label cash-label" for="reduceCash">
{{__('Reduce Cash')}}
</label>
</div>
</div>
<div class="col-lg-6">
<label>{{__('Amount')}}</label>
<input type="number" class="form-control" placeholder="{{ __('ex 500') }}">
</div>
<div class="col-lg-6">
<label>{{__('Adjustment Date')}}</label>
<input type="date" name="date" class="form-control">
</div>
<div class="col-lg-12 mb-2">
<label>{{__('Description')}}</label>
<textarea name="description" class="form-control" placeholder="{{ __('description') }}"></textarea>
</div>
</div>
<div class="col-lg-12">
<div class="button-group text-center mt-5">
<button type="reset" class="theme-btn border-btn m-2">{{ __('Reset') }}</button>
<button type="submit" class="theme-btn m-2 submit-btn">{{ __('Send') }}</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>