onkeydown="/input val 체크 및 수정/"
onkeyup=""
<div class="mt-5">보유 예치금 : [[${actorRestCash}]]</div>
<div th:with="maxUseRestCash = ${order.calculatePayPrice > actorRestCash ? actorRestCash : order.calculatePayPrice}">
<span>사용할 예치금 : </span>
<input type="number" id="PaymentForm__useRestCash"
th:placeholder="|0 - ${maxUseRestCash}|" min="0" th:max="${maxUseRestCash}"
class="input input-bordered min-w-[300px]"
onkeydown="/*input val 체크 및 수정*/"
onkeyup=""
>
<label class="inline-flex items-center">
<span>전액 사용</span>
<input type="checkbox" class="ml-2 checkbox">
</label>
<!-- <input id="PaymentForm__useRestCash" type="number" placeholder="사용할 예치금" min="0"-->
<!-- th:max="${order.calculatePayPrice > actorRestCash ? actorRestCash : order.calculatePayPrice}"-->
<!-- class="input input-bordered min-w-[300px]">-->
</div>