aboutsummaryrefslogtreecommitdiff
path: root/app/views/agents/_edit.html.erb
blob: 72ce56ded5d2b63db3e11e94f5c64bcc784ec13e (plain)
1
2
3
4
5
6
<h3>Edit <%= @agent.presence&.name || 'new agent' %></h3>
<h2>Context: <%= current_agent %></h2>

<%= form_with model: @agent, url: controller.action_name == 'new' ? agents_path : agent_path(@agent) do |f| %>
    <%= render partial: 'form', locals: { agent: @agent, f: f } %>
<% end %>