2024-08-09 11:22:57 -04:00
|
|
|
<%= modal_form_wrapper title: t(".edit", account: @account.name) do %>
|
|
|
|
<%= styled_form_with model: @account, class: "space-y-4", data: { turbo_frame: "_top" } do |f| %>
|
|
|
|
<%= f.text_field :name, label: t(".name") %>
|
|
|
|
<%= money_with_currency_field f, :balance_money, label: t(".balance"), default_currency: @account.currency, disable_currency: true %>
|
2024-06-13 14:37:27 -04:00
|
|
|
|
2024-08-09 11:22:57 -04:00
|
|
|
<div class="relative">
|
|
|
|
<%= 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 %>
|
|
|
|
</div>
|
2024-06-13 14:37:27 -04:00
|
|
|
|
2024-08-09 11:22:57 -04:00
|
|
|
<%= f.submit %>
|
|
|
|
<% end %>
|
2024-06-13 14:37:27 -04:00
|
|
|
<% end %>
|