``` Section::make('Picklist Section') ->hidden(function ($get) { $allowedType = [FieldTypeEnums::PICK_LIST]; return !in_array($get('field_type'), $allowedType); }) ->schema([ Select::make('Picklist') ->label('Picklist') ->options(Picklist::pluck('name')) ->createOptionForm([ TextInput::make('name') ->label(strval(__('cranberry-muffin::cranberry-muffin.form.input.picklists.name'))) ->afterStateUpdated(function (Closure $set, $state) { $set('slug', Str::slug($state)); }) ->reactive() ->required(), TextInput::make('slug') ->label(strval(__('cranberry-muffin::cranberry-muffin.form.input.picklists.slug'))) ->required(), Textarea::make('description') ->label(strval(__('cranberry-muffin::cranberry-muffin.form.input.picklists.description'))) ->columnSpan(2), Repeater::make('add_picklist_options') ->label(strval(__('cranberry-muffin::cranberry-muffin.repeater.picklist-options'))) ->schema([ TextInput::make('name') ->label(strval(__('cranberry-muffin::cranberry-muffin.form.input.picklist-options.name'))) ->afterStateUpdated(function (Closure $set, $state) { $set('slug', Str::slug($state)); }) ->reactive() ->required(), TextInput::make('slug') ->label(strval(__('cranberry-muffin::cranberry-muffin.form.input.picklist-options.slug'))) ->required(), ])->columnSpanFull() ->columns(2) ->createItemButtonLabel('Add New Picklist Option') ])->columns(2) ]) ->hidden(function ($get) { $allowedType = [FieldTypeEnums::PICK_LIST]; return !in_array($get('field_type'), $allowedType); }), ``` i have 2 resources - PicklistOptionResource - PicklistResource - that i have created in modal - i want to save the data after the data is passed how to do that