%= form_for(member_profile) do |f| %>
<%= render 'phcnotifi/validations', :object => @member_profile %>
<%= f.label :mfirstname, "First Name*" %>
<%= f.text_field :mfirstname, class: 'form-control', placeholder: 'First Name' %>
<%= f.label :mlastname, "Last Name*" %>
<%= f.text_field :mlastname, class: 'form-control', placeholder: 'Last Name' %>
<%= f.label :mtitle, "Job Title" %>
<%= f.text_field :mtitle, class: 'form-control', placeholder: 'Job Title/Salutation' %>
<%= f.label :memail, "Contact Email Address*" %>
<%= f.text_field :memail, class: 'form-control', placeholder: 'Contact Email (Will Remain Private)' %>
<%= f.label :mphone, "Contact Phone Number*" %>
<%= f.text_field :mphone, class: 'form-control masked', placeholder: 'Contact Phone Number (Will Remain Private)', data: {format: '(999) 999-9999', placeholder: 'x'} %>
<%= f.submit class: "btn btn-primary" %>
<% end %>