<%= form_with model: @agent_profile, scope: :agent_profile, url: @agent_profile.persisted? ? admin_portal_agent_path(@agent_profile) :
admin_portal_agents_path, method: @agent_profile.persisted? ? :patch : :post, local: true, data: { turbo: false } do |f| %>
<%= f.submit @agent_profile&.persisted? ? 'Update Agent' : 'Create Agent', class: "btn btn-primary rounded-pill px-5 py-2 shadow-sm", style: "background: #007aff; border: none;" %>
<%= link_to "Cancel", admin_portal_agents_path, class: "btn btn-outline-secondary rounded-pill px-5 py-2 shadow-sm" %>
<% end %>