My Profile

Manage and view your personal information

Personal Information
First Name

<%= @customer.firstname %>

Middle Name

<%= @customer.middlename.presence || "-" %>

Last Name

<%= @customer.lastname %>

Mobile 1

<%= @customer.mobile_1 %>

Mobile 2

<%= @customer.mobile_2.presence || "-" %>

Address 1

<%= @customer.address_1 %>

Address 2

<%= @customer.address_2.presence || "-" %>

City

<%= @customer.city %>

Country

<%= @customer.country %>

Next of Kin
<%= link_to "Add Next of Kin", "#", class: "btn btn-outline-primary btn-sm rounded-pill px-4" %>
<% if @customer.next_of_kins.any? %>
<% @customer.next_of_kins.each do |nok| %> <% end %>
Name Relation Mobile Email
<%= [nok.firstname, nok.middlename, nok.lastname].compact.join(" ") %> <%= nok.relation %> <%= [nok.mobile_1, nok.mobile_2].compact.join(" / ") %> <%= nok.email %>
<% else %>

No next of kin added yet.

<% end %>
<%= link_to "Edit Profile", edit_client_portal_profile_path, class: "btn btn-primary btn-lg rounded-pill px-4" %> <%= link_to "Dashboard", client_portal_dashboard_path, class: "btn btn-secondary btn-lg rounded-pill px-4" %>