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 :slug, label: { text: "Slug" }, class: "w-full" %>
<%= f.text_field :group_number, label: { text: "Group/Medical Number" }, class: "w-full" %>
<%= f.text_field :pl_plan_key, label: { text: "Pl Plan Key" }, class: "w-full" %>
<%= f.text_field :effective_date, label: { text: "Effective Date" }, class: "w-full" %>
<%= f.submit "Save Employer" %> <%= link_to "Back", employer_path(@employer.slug), class: "flex justify-center items-center cursor-pointer bg-atmosphere hover:bg-deepcove border-2 border-atmosphere text-platinum font-bold px-3 rounded-sm h-10 transition duration-100" %>
<% end %>