Reservation Preview
Review all details carefully before confirming your reservation
<%= form_with model: [:agent_portal, @property, @reservation],
url: confirm_agent_portal_property_reservations_path(@property),
method: :post,
local: true do |f| %>
<%= hidden_field_tag "reservation[customer_id]", @reservation.customer_id %>
<%= hidden_field_tag "reservation[property_term_id]", @reservation.property_term_id %>
<%= hidden_field_tag "reservation[bank_id]", @reservation.bank_id %>
<%= hidden_field_tag "reservation[notes]", @reservation.notes %>
<%= f.submit "Confirm Reservation", data: { turbo: false }, class: "btn btn-gradient-primary w-50 apple-btn-lg" %>
<% end %>