@extends('layouts.app') @push('styles') @endpush @section('content')

{{ app()->getLocale() == 'ar' ? 'تعديل المستخدم: ' : 'Edit User: ' }} {{ $user->name }}

{{ app()->getLocale() == 'ar' ? 'عودة' : 'Back' }}
@csrf @method('PUT')
{{ app()->getLocale() == 'ar' ? 'الوظيفة' : 'Job Title' }} {{ $user->employee && $user->employee->jobTitle ? $user->employee->jobTitle->name : '---' }}
{{ app()->getLocale() == 'ar' ? 'الفروع' : 'Branches' }} {{ $user->employee ? $user->employee->branches->pluck('name')->implode(', ') : '---' }}
@foreach($roles as $role) @endforeach

{{ app()->getLocale() == 'ar' ? 'تغيير كلمة المرور' : 'Change Password' }}

@csrf @method('PUT')
@push('scripts') @endpush @endsection