My current structure looks like this:
<td class="sorting_1" tabindex="0">
<div class="form-check" data-user-id="1">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" value="">
<span class="form-check-sign">
<span class="check"></span>
</span>
</label>
</div>
<div class="photo">
<img src=".././uploads/images/avatar/1.png">
</div>
</td>
I want to display both the checkbox and image in the same row, but currently the image is appearing on a separate line. How can I adjust the layout to fix this issue?