Section::make(__('File Configuration'))
->schema([
Select::make('file_type')
->live()
->options(...)
->required()
->partiallyRenderComponentsAfterStateUpdated(['file_path', 'asset_path']),
FileUpload::make('file_path')
->visible(fn($get) => $get('file_type') === 'file'),
TextInput::make('asset_path')
->visible(fn($get) => $get('file_type') === 'asset'),
]),
Section::make(__('File Configuration'))
->schema([
Select::make('file_type')
->live()
->options(...)
->required()
->partiallyRenderComponentsAfterStateUpdated(['file_path', 'asset_path']),
FileUpload::make('file_path')
->visible(fn($get) => $get('file_type') === 'file'),
TextInput::make('asset_path')
->visible(fn($get) => $get('file_type') === 'asset'),
]),