@php $locale = app()->getLocale(); $isRtl = $locale === 'ar'; $currency = \App\Models\Setting::currencyLabel($locale); $photoUrl = $trainer->photo ? asset('storage/' . $trainer->photo) : ('https://ui-avatars.com/api/?name=' . urlencode($trainer->full_name) . '&background=random&size=96'); @endphp @extends('layouts.app') @section('title', $isRtl ? 'تعديل مدرب' : 'Edit Trainer') @section('content')

{{ $isRtl ? 'تعديل مدرب' : 'Edit Trainer' }}

{{ $trainer->full_name }} • {{ $trainer->employee_id }}

@csrf @method('PUT') @if($errors->any())

{{ $isRtl ? 'يرجى تصحيح الأخطاء التالية:' : 'Please fix the following errors:' }}

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ $isRtl ? 'الراتب والعمولة' : 'Salary & Commission' }}

{{ $currency }}
{{ $isRtl ? 'إلغاء' : 'Cancel' }}
@endsection