I am not able to check and uncheck a Checkbox value and save in edit page in Magento2:
My input field:
<label class="check_tick">Shipping
<input type="checkbox" name="product[shiping]" id="shiping" value= 1 <?php if($product_coll->getShipingValue() == 1){ echo "checked='checked'"; }?> class="checkboxvalue">
<span class="checkmarkng"></span>
</label>
Any help would be appreciated.