@extends('layouts.app') @section('content')

{{ trans('lang.country_managers') }}

@include('alerts.error_messages')
@csrf @method('PUT')
{{ trans('lang.edit') }} - {{ trans('lang.country_managers') }} @php $currentUserId = old('user_id', $user->id); $preselected = (array) old('country_ids', $selected ?? []); @endphp
@error('user_id') {{ $message }} @enderror
@error('country_ids') {{ $message }} @enderror @error('country_ids.*') {{ $message }} @enderror
{{ trans('lang.cancel') ?? 'Cancel' }}
@endsection @section('scripts') @endsection