|
|
@@ -76,6 +76,19 @@
|
|
|
<input class="form-check-input" type="checkbox" name="pay_methods[]" id="usdc-erc20" value="512" {{ (($info->pay_methods ?? 0) & 512) ? 'checked' : '' }}>
|
|
|
<label class="form-check-label" for="usdc-erc20">USDC-ERC20</label>
|
|
|
</div>
|
|
|
+ <br><br>
|
|
|
+ <div class="form-check form-check-inline">
|
|
|
+ <input class="form-check-input" type="checkbox" name="pay_methods[]" id="eth" value="32" {{ (($info->pay_methods ?? 0) & 32) ? 'checked' : '' }}>
|
|
|
+ <label class="form-check-label" for="eth">ETH</label>
|
|
|
+ </div>
|
|
|
+ <div class="form-check form-check-inline">
|
|
|
+ <input class="form-check-input" type="checkbox" name="pay_methods[]" id="usdt" value="1024" {{ (($info->pay_methods ?? 0) & 1024) ? 'checked' : '' }}>
|
|
|
+ <label class="form-check-label" for="usdt">USDT</label>
|
|
|
+ </div>
|
|
|
+ <div class="form-check form-check-inline">
|
|
|
+ <input class="form-check-input" type="checkbox" name="pay_methods[]" id="usdc" value="2048" {{ (($info->pay_methods ?? 0) & 2048) ? 'checked' : '' }}>
|
|
|
+ <label class="form-check-label" for="usdc">USDC</label>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<button type="button" onclick="commit({{$info->id}})" class="btn btn-sm btn-gradient-primary btn-icon-text">
|