<%= form_with(model: @member_profile, local: true) do |phc_members_member_profile| %> <%= render 'phcnotifi/validations', :object => @member_profile %>
<%= phc_members_member_profile.label :member_firstname, "First Name*" %> <%= phc_members_member_profile.text_field :member_firstname, class: 'form-control', placeholder: 'First Name' %>
<%= phc_members_member_profile.label :member_lastname, "Last Name*" %> <%= phc_members_member_profile.text_field :member_lastname, class: 'form-control', placeholder: 'Last Name' %>
<%= phc_members_member_profile.label :member_title, "Job Title" %> <%= phc_members_member_profile.text_field :member_title, class: 'form-control', placeholder: 'Job Title/Salutation' %>
<%= phc_members_member_profile.label :member_email, "Contact Email Address*" %> <%= phc_members_member_profile.text_field :member_email, class: 'form-control', placeholder: 'Contact Email (Will Remain Private)' %>
<%= phc_members_member_profile.label :member_phone, "Contact Phone Number*" %> <%= phc_members_member_profile.text_field :member_phone, class: 'form-control masked', placeholder: 'Contact Phone Number (Will Remain Private)', data: {format: '(999) 999-9999', placeholder: 'x'} %>

<%= phc_members_member_profile.submit class: "btn btn-primary btn-gradient waves-effect waves-light btn-md" %>

<% end %>