<%= link_to employers_path, 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 Control" %>
<% end %>

New Employer

<%= form_with model: @employer, local: true, multipart: true do |f| %>
<%= f.text_field :name, label: { text: "Employer Name" }, data: { logo_upload_target: "employer" }, 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" %>
<%= f.submit "Create New Employer" %>
<% end %>