{{-- New-Unity ERP | app/Modules/Admin/Resources/Views/users/show.blade.php | v1.0 | 07/07/2026 --}} {{-- v1.0 — Vista detalle de usuario. --}} @extends('layouts.vertical', ['pageTitle' => __('admin.user-detail')]) @section('page-title')

{{ $user->name }} {{ __('admin.user-detail') }}

{{ __('admin.back') }} {{ __('admin.edit') }}
@endsection @section('content')

{{ __('admin.profile') }}

{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}

{{ $user->email }}

{{ $user->is_active ? __('admin.active') : __('admin.inactive') }}
{{ __('admin.role-colon') }}
@forelse($user->roles as $role) {{ $role->name }} @empty {{ __('admin.no-role') }} @endforelse
{{ __('admin.company-colon') }}
{{ $user->currentCompany->name ?? '—' }}
{{ __('admin.member-since') }}
{{ $user->created_at->format('M d, Y') }}
@endsection