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

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

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