%= form_with(model: @member_profile, local: true) do |form| %>
<%= render 'phcdevworks_notifications/bootstrap/validations', :object => @member_profile %>
<%= form.label :member_profile_first_name, "First Name*" %>
<%= form.text_field :member_profile_first_name, class: 'form-control', placeholder: 'First Name' %>
<%= form.label :member_profile_last_name, "Last Name*" %>
<%= form.text_field :member_profile_last_name, class: 'form-control', placeholder: 'Last Name' %>
<%= form.label :member_profile_title, "Job Title" %>
<%= form.text_field :member_profile_title, class: 'form-control', placeholder: 'Job Title/Salutation' %>
<%= form.label :member_profile_email, "Contact Email Address*" %>
<%= form.text_field :member_profile_email, class: 'form-control', placeholder: 'Contact Email (Will Remain Private)' %>
<%= form.label :member_profile_phone, "Contact Phone Number*" %>
<%= form.text_field :member_profile_phone, class: 'form-control masked', placeholder: 'Contact Phone Number (Will Remain Private)', data: {format: '(999) 999-9999', placeholder: 'x'} %>
<%= form.label :member_profile_notes, "Member" %>
<%= form.text_area :member_profile_notes, class: 'form-control masked', placeholder: 'Member Notes' %>
<%= form.submit class: "btn btn-primary btn-md" %>
<% end %>