I’m trying to find documentation that covers other types such checkboxes, dropdown boxes, radio, etc. I can’t find any documentation that helps with create a form that would require elements other than basic button and text input which is shown below. Thanks in advance
<.form for={@form} phx-submit="save">
<.input field={@form[:name]} placeholder="Name" autocomplete="off" />
<.input
field={@form[:phone]}
type="tel"
placeholder="Phone"
autocomplete="off"
/>
<.button phx-disable-with="Saving...">
Check In
</.button>
</.form>