Approve Reservation ##<%= @reservation.id %>

<%= form_with url: approve_admin_portal_reservation_path(@reservation), method: :patch, scope: :reservation do |f| %>
<%= f.label :blueprint_id, "Select Agreement Blueprint" %> <%= f.collection_select :blueprint_id, @templates, :id, :name, prompt: "Choose a blueprint" %>
<%= f.submit "Approve Reservation",data: {turbo: false}, class: "btn btn-success" %>
<% end %>