when
Select::make('country_id')->relationship('country', 'name') ->rules(['integer', 'exists:countries,id']) ->searchable() ->preload() ->when(auth()->user()->can('create', Country::class), function ($field) { return $field->createOptionForm(fn() => CountryResource::formFields()); })