@extends('layouts.user') @section('title', 'معلوماتي — دمشق باركينغ') @section('content') {{-- Page header --}}
العودة

معلوماتي

إدارة بيانات حسابك الشخصي

{{-- ── Identity card ──────────────────────────────────────────────────── --}}
{{-- Avatar --}}
{{ mb_substr($user->name, 0, 1) }}

{{ $user->name }}

{{ $user->email }}

@php $roleLabel = match($user->role) { 'admin' => 'مدير النظام', 'operator' => 'مشغّل', default => 'مستخدم', }; $roleStyle = match($user->role) { 'admin' => 'background:rgba(239,68,68,.1);color:#b91c1c;', 'operator' => 'background:rgba(245,158,11,.1);color:#92400e;', default => 'background:rgba(99,102,241,.1);color:#4338ca;', }; @endphp {{ $roleLabel }} عضو منذ {{ $user->created_at->translatedFormat('F Y') }}
{{-- ── Edit name ───────────────────────────────────────────────────────── --}}
تعديل الاسم
@if($errors->updateName->any())
{{ $errors->updateName->first() }}
@endif
@csrf @method('PATCH')
لا يمكن تغيير البريد الإلكتروني.
{{-- ── Change password ─────────────────────────────────────────────────── --}}
تغيير كلمة السر
@if($errors->updatePassword->any())
{{ $errors->updatePassword->first() }}
@endif
@csrf @method('PATCH')
@endsection