mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-25 08:09:38 +02:00
17 lines
612 B
Text
17 lines
612 B
Text
<%# locals: (entry:) %>
|
|
|
|
<%= styled_form_with model: entry, url: account_valuations_path, class: "space-y-4" do |form| %>
|
|
<%= form.hidden_field :account_id %>
|
|
|
|
<% if entry.errors.any? %>
|
|
<%= render "shared/form_errors", model: entry %>
|
|
<% end %>
|
|
|
|
<div class="space-y-3">
|
|
<%= form.hidden_field :name, value: "Balance update" %>
|
|
<%= form.date_field :date, label: true, required: true, value: Date.current, min: Account::Entry.min_supported_date, max: Date.current %>
|
|
<%= form.money_field :amount, label: t(".amount"), required: true %>
|
|
</div>
|
|
|
|
<%= form.submit t(".submit") %>
|
|
<% end %>
|