%# locals: (account:) %>
<%= summary_card title: t(".make_model") do %>
<%= [account.vehicle.make, account.vehicle.model].compact.join(" ").presence || t(".unknown") %>
<% end %>
<%= summary_card title: t(".year") do %>
<%= account.vehicle.year || t(".unknown") %>
<% end %>
<%= summary_card title: t(".mileage") do %>
<%= account.vehicle.mileage || t(".unknown") %>
<% end %>
<%= summary_card title: t(".purchase_price") do %>
<%= format_money account.vehicle.purchase_price %>
<% end %>
<%= summary_card title: t(".current_price") do %>
<%= format_money account.balance_money %>
<% end %>
<%= summary_card title: t(".trend") do %>
<%= account.vehicle.trend.value %>
(<%= account.vehicle.trend.percent %>%)
<% end %>
<%= link_to "Edit account details", edit_vehicle_path(account), class: "btn btn--ghost", data: { turbo_frame: :modal } %>