Keep old value checkbox laravel

I have a Laravel 9.x project, and when I submit the form and an error occurs, I have managed to keep the already inserted value of the text fields, but I would like the checkboxes to keep their value as well.

<input type="checkbox" name="abono_tasa" value="{{ isset($vado->abono_tasa) ? ($vado->abono_tasa==1 ? 'checked': '') : '' }}" id="abono_tasa">

I would like to control this.