<%= form_for([@members_listing.main, @members_listing], url: members_main_listing_path, method: :patch) do |f| %> <% if @members_listing.errors.any? %>

<%= pluralize(@members_listing.errors.count, "error") %> prohibited this directorylisting from being saved:

<% end %>
<%= f.text_field :mlcontactname, class: 'form-control', placeholder: 'Contact Name for Company' %>
<%= f.text_field :mlcompanyname, class: 'form-control', placeholder: 'Name of Business or Organization' %>
<%= f.text_field :mladdressl1, class: 'form-control', placeholder: 'Main Street Address' %>
<%= f.text_field :mladdressl2, class: 'form-control', placeholder: 'Adress Info Like Box or POBox Number' %>
<%= f.text_field :mlcity, class: 'form-control', placeholder: 'City' %>
<%= f.text_field :mlprovince, class: 'form-control', placeholder: 'Province or State' %>
<%= f.text_field :mlcountry, class: 'form-control', placeholder: 'Country' %>
<%= f.text_field :mlpostalcode, class: 'form-control', placeholder: 'PostalCode' %>
<%= f.text_field :mlphone, class: 'form-control', placeholder: 'General Company Number' %>
<%= f.text_field :mlwebsite, class: 'form-control', placeholder: 'Company Website' %>
<%= f.text_field :mlemail, class: 'form-control', placeholder: 'Company General Email' %>
<%= f.submit "Submit", class: "btn btn-primary" %>
<% end %>