<%= modal do %>

<%= t(".edit", account: @account.name) %>

<%= lucide_icon "x", class: "w-5 h-5 text-gray-500", data: { action: "click->modal#close" } %>
<%= form_with model: @account, data: { turbo_frame: "_top" } do |f| %> <%= f.text_field :name, label: "Name" %>
<%= f.collection_select :institution_id, Current.family.institutions.alphabetically, :id, :name, { include_blank: t(".ungrouped"), label: t(".institution") } %> <%= link_to new_institution_path do %> <%= lucide_icon "plus", class: "text-gray-700 hover:text-gray-500 w-4 h-4 absolute right-3 top-2" %> <% end %>
<%= f.submit %> <% end %>
<% end %>