@extends('layouts.main_dashboard.app') @php $isArabic = app()->getLocale() === 'ar'; $userName = trim(collect([$user->first_name, $user->middle_name, $user->last_name])->filter()->implode(' ')); $userInitials = collect([$user->first_name, $user->last_name]) ->filter() ->map(fn ($value) => mb_substr($value, 0, 1)) ->implode(''); @endphp @section('title', $isArabic ? 'البيانات الشخصية' : 'Personal Information') @section('page_heading', $isArabic ? 'البيانات الشخصية' : 'Personal Information') @section('skip_page_hero', true) @section('breadcrumb')
{{ $isArabic ? 'حدّث بياناتك الأساسية ولغة الحساب من نفس الصفحة. لغة الحساب هي نفسها لغة اللوحة.' : 'Update your basic details and preferred account language from one page. Your account language is the same as your dashboard language.' }}