%= form_with(model: income, class: "contents") do |form| %>
<% if income.errors.any? %>
<%= pluralize(income.errors.count, "error") %> prohibited this income from being saved:
<% income.errors.each do |error| %>
- <%= error.full_message %>
<% end %>
<% end %>
<%= form.label :description %>
<%= form.text_field :description, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
<%= form.label :included %>
<%= form.check_box :included, class: "block mt-2 h-5 w-5" %>
<%= form.label :amount %>
<%= form.text_field :amount, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
<%= form.label :member_id %>
<%=
form.select :member_id,
options_for_select(members, income.member_id),
{},
class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full"
%>
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
<% end %>