It looks like you are missing the x-ref attribute on your modal. You need to add x-ref="navmodalx" to your modal element. This will allow you to access the checkbox element from the modal and update its checked property when the modal is closed.
You also need to update the x-on:modal.window attribute to set the show property to false when the modal is closed.
<div x-data="{ show: false }" x-ref="navmodalx" x-on:modal.window="show = ($event.detail === name); $refs.navmodalx.checked = false;" x-show="show">
...
</div>
Hope this helps!