@extends('layouts.dashboard') @section('title', app()->getLocale() == 'ar' ? 'الملف الشخصي' : 'Profile') @section('page-content')

{{ app()->getLocale() == 'ar' ? 'الملف الشخصي' : 'Profile' }}

{{ app()->getLocale() == 'ar' ? 'معلومات الحساب' : 'Account Information' }}
@csrf
@if($user->avatar) @else @endif
{{ app()->getLocale() == 'ar' ? 'الحد الأقصى: 2 ميجا' : 'Max: 2MB' }}
{{ app()->getLocale() == 'ar' ? 'تغيير كلمة المرور' : 'Change Password' }}
@csrf
{{ app()->getLocale() == 'ar' ? 'معلومات إضافية' : 'Additional Info' }}

{{ app()->getLocale() == 'ar' ? 'تاريخ التسجيل:' : 'Member Since:' }}
{{ $user->created_at->format('d M Y') }}

{{ app()->getLocale() == 'ar' ? 'آخر تحديث:' : 'Last Updated:' }}
{{ $user->updated_at->diffForHumans() }}

@endsection