Full Name: <%= @agent_profile.user.full_name %>
Email: <%= @agent_profile.user.email %>
Agent ID: <%= @agent_profile.id %>
Company: <%= @agent_profile.company_name %>
Phone: <%= @agent_profile.phone.presence || "N/A" %>
Address: <%= @agent_profile.address.presence || "N/A" %>
Bio:
<%= simple_format(@agent_profile.bio.presence || "No bio available.") %>
<%= link_to 'Edit Agent', edit_admin_portal_agent_path(@agent_profile),
class: 'btn btn-warning rounded-pill px-4 py-2 shadow-sm' %>
<%= link_to 'Delete Agent', admin_portal_agent_path(@agent_profile),
method: :delete,
data: { confirm: 'Are you sure?' },
class: 'btn btn-danger rounded-pill px-4 py-2 shadow-sm' %>
<%= link_to 'Resend Invite', send_invite_admin_portal_agent_path(@agent_profile),
method: :post,
class: 'btn btn-info rounded-pill px-4 py-2 shadow-sm' %>
<%= link_to 'Back to List', admin_portal_agents_path,
class: 'btn btn-secondary rounded-pill px-4 py-2 shadow-sm' %>