I'm using rails 7 and materializeCSS.
When I add a collection_select or check_box to the form object (form.check_box :active for example) the check box is rendered as: <input name="user[active]" type="hidden" value="0" autocomplete="off">
Rails code:
<%= form.check_box :active %>
What am I missing?