<%= link_to employer_path(@employer.slug), class: "flex items-center h-14 space-x" do %>
<%= icon "arrow-big-left-dash", library: "lucide", class: "h-full w-20 text-center" %>
<%= "Back to Employer" %>
<% end %>

Edit Employer

<%= form_with model: @employer, local: true, multipart: true do |f| %>
<%= f.text_field :name, label: { text: "Employer Name" }, class: "w-full" %>
<%= f.text_field :effective_date, label: { text: "Effective Date" }, class: "w-full" %>
<%= f.text_field :group_number, label: { text: "Group/Medical Number" }, class: "w-full" %>

Admin

<%= f.text_field :slug, label: { text: "URL Slug" }, class: "w-full pointer-events-none opacity-65 cursor-not-allowed" %>
<%= f.text_field :pl_plan_key, label: { text: "Pl Plan Key" }, class: "w-full pointer-events-none opacity-65 cursor-not-allowed" %>
<%= f.submit "Save Employer" %>
<% end %>