@extends('layouts.app') @section('title', 'الملف الشخصي - منصة ابدأ') @section('content') @if ($errors->any())
@endif

الملف الشخصي

إدارة بياناتك الشخصية ومعلوماتك وايضا هنا

المعلومات الأساسية

@csrf {{-- Profile Photo Section - Hidden for Employers --}} @if(!$user->hasRole('Employer'))
{{-- ✅ أيقونة الحذف: تظهر فقط إذا كانت هناك صورة حقيقية مرفوعة --}}

الحد الأقصى: 2MB. الصيغ المدعومة: JPG, PNG, GIF

@endif
@if($user->hasRole('Trainee'))

اهتماماتي

@csrf
@foreach($categories as $category) @endforeach

كورساتي النشطة

@if($activeCourses->count() > 0)
@foreach($activeCourses as $course)
@if($course->image)
{{ $course->title }}
@else
@endif

{{ $course->title }}

نشط @if($course->category) {{ $course->category->name }} @endif
@if($course->instructor)
{{ $course->instructor->name }}
@endif
@endforeach
@else

لا توجد كورسات نشطة

ابدأ رحلتك التعليمية الآن

استكشف الكورسات
@endif

كورساتي قيد الانتظار

@if($pendingCourses->count() > 0)
@foreach($pendingCourses as $course)
@if($course->image)
{{ $course->title }}
@else
@endif

{{ $course->title }}

قيد الانتظار @if($course->category) {{ $course->category->name }} @endif
@if($course->instructor)
{{ $course->instructor->name }}
@endif
@endforeach
@else

لا توجد كورسات قيد الانتظار

جميع الكورسات الخاصة بك نشطة

@endif

الكورسات المفضلة

@if($wishlistCourses->count() > 0)
@foreach($wishlistCourses as $course)
@if($course->image)
{{ $course->title }}
@else
@endif
@if($course->category) {{ $course->category->name }} @endif

{{ $course->title }}

@if($course->instructor || $course->location)
@if($course->instructor)

{{ $course->instructor->name }}

@endif @if($course->location)

{{ $course->location }}

@endif
@endif
@if($course->is_free) مدعوم @else {{ $course->price }} ل.س @endif
تفاصيل الكورس
@endforeach
@else

لا توجد كورسات في المفضلة

أضف الكورسات التي تهمك إلى قائمتك المفضلة

استكشف الكورسات الآن
@endif
@elseif($user->hasRole('Employer'))

بيانات الشركة

@csrf
@if($user->employer && $user->employer->logo) @endif
@elseif($user->hasRole('Instructor'))

بيانات المدرب

@csrf

الحد الأقصى: 5MB. الصيغ المدعومة: PDF, DOC, DOCX

@endif
@endsection