@extends('layouts.portal') @section('title', 'Profile') @section('portal_title', 'Profile') @section('portal_subtitle', 'View and manage your investor account information.') @section('portal_content') @php $currentPlan = $subscribedPlan['name'] ?? 'No plan subscribed'; $profilePhone = $portalUser['phone'] ?? ''; @endphp

Profile Information

{{ $portalUser['name'] }}

Your main account information is shown below. You can update your name and phone number from this page.

Status: {{ $portalUser['status'] }}

Full Name

{{ $portalUser['name'] }}

Email

{{ $portalUser['email'] }}

Phone Number

{{ $profilePhone }}

Subscribed Plan

{{ $currentPlan }}

Registered On

{{ $portalUser['registered_at'] }}

@csrf
@error('name')

{{ $message }}

@enderror
@error('phone')

{{ $message }}

@enderror
@endsection