@extends('layout.app') @section('title', 'User Management') @section('page-title', 'Manage System Users') @section('content')
| User Identity | Contact Information | Account Status | Financial Position | Manage |
|---|---|---|---|---|
|
{{ $user->name }}
Member since {{ $user->created_at->format('M Y') }}
|
{{ $user->email }} |
{{ $user->is_active ? 'VERIFIED' : 'PENDING' }} | $ {{ number_format($user->wallet->balance ?? 0, 2) }} | Review Profile |
| No user records found. | ||||