<input type="radio" name="geckoHatchling" value="1" @if(old('geckoHatchling')) checked @endif>
<input type="radio" name="geckoHatchling" value="0" @if(!old('geckoHatchling')) checked @endif>
<div class="col-sm-10">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="warehouse" id="inlineRadio1" value="option1" required @if(old('warehouse')) checked @endif>
<label class="form-check-label" for="inlineRadio1">Да</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="warehouse" id="inlineRadio2" value="option2" @if(old('warehouse')) checked @endif>
<label class="form-check-label" for="inlineRadio2">Нет</label>
</div>
</div>