<% if notice.present? %>

<%= notice %>

<% end %>

<%= @member.name %>

Household member details and budget role

<% if @member.pays %> contributing <% else %> non-contributing <% end %>
<%= @member.name.first.upcase %>

<%= @member.name %>

Household Member

<% if @member.pays %>
Contributing to budget
<% else %>
Not contributing to budget
<% end %>
<%= link_to edit_member_path(@member), class: "inline-flex items-center px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition-colors" do %> Edit Member <% end %> <%= button_to member_path(@member), method: :delete, class: "inline-flex items-center px-4 py-2 bg-red-600 hover:bg-red-700 text-white font-medium rounded-lg transition-colors", confirm: "Are you sure you want to delete this member?" do %> Delete <% end %> <%= link_to members_path, class: "inline-flex items-center px-4 py-2 bg-gray-100 hover:bg-gray-200 text-gray-700 font-medium rounded-lg transition-colors" do %> Back to Members <% end %>