<%= plan_fields.text_field :title, label: { text: "Plan Title" }, class: "w-full", data: { add_plan_target: "plan" } %>
<% if f.object.persisted? %>
<%= plan_fields.text_field :plan_id, label: { text: "Plan Id" }, class: "w-full" %>
<% end %>
<%= f.select :template_id, options_from_collection_for_select(@plan_templates, :id, :title), { prompt: "Select Plan Template", class: "w-full" }, { data: { action: "benefits-template-picker#fetchData" }} %>