@extends('layouts.user') @section('title', __('user_profile.title')) @section('page_title', __('user_profile.page_title')) @section('breadcrumb', __('user_profile.breadcrumb')) @section('content')
👤

{{ __('user_profile.profile_overview') }}

{{ __('user_profile.profile_overview_text') }}

@if(!empty($user->photo)) {{ $user->name }} @else
{{ \Illuminate\Support\Str::upper(\Illuminate\Support\Str::substr($user->name ?? 'U', 0, 1)) }}
@endif
{{ $user->name }}
{{ $user->email ?? __('user_profile.no_email') }}
{{ __('user_profile.uid_label') }} {{ $user->uid ?? __('user_profile.na') }}
{{ __('user_profile.username_locked') }}
{{ __('user_profile.username_locked_text') }}
{{ __('user_profile.account_security') }}
{{ __('user_profile.account_security_text') }}
{{ __('user_profile.profile_management') }}
{{ __('user_profile.profile_management_text') }}

{{ __('user_profile.title') }}

{{ __('user_profile.manage_settings_text') }}

{{ __('user_profile.username') }}
{{ $user->username ?? __('user_profile.na') }}
{{ __('user_profile.phone_number') }}
{{ $user->phone ?? __('user_profile.na') }}
{{ __('user_profile.email_address') }}
{{ $user->email ?? __('user_profile.na') }}
{{ __('user_profile.account_status') }}
{{ ($user->status ?? 'active') === 'active' ? __('user_profile.active') : ucfirst($user->status) }}
{{ __('user_profile.user_id') }}
{{ $user->uid ?? __('user_profile.na') }}
{{ __('user_profile.profile_photo') }}
@if(!empty($user->photo)) {{ $user->name }} @else
{{ \Illuminate\Support\Str::upper(\Illuminate\Support\Str::substr($user->name ?? 'U', 0, 1)) }}
@endif
{{ __('user_profile.current_account_avatar') }}
{{ __('user_profile.need_update') }}
{{ __('user_profile.update_info_or_password_text') }}
@endsection