mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 22:45:20 +02:00
8 lines
372 B
Text
8 lines
372 B
Text
|
<%= form_with model: @import do |form| %>
|
||
|
<div class="mb-4">
|
||
|
<%= form.collection_select :account_id, Current.family.accounts.alphabetically, :id, :name, { prompt: t(".select_account"), label: t(".account"), required: true } %>
|
||
|
</div>
|
||
|
|
||
|
<%= form.submit t(".next"), class: "px-4 py-2 block w-full rounded-lg bg-gray-900 text-white text-sm font-medium" %>
|
||
|
<% end %>
|