Lalhmangaihenga
Lalhmangaihenga
If I put like this (without dynamic) then it's working ```php Forms\Components\FileUpload::make('img') ->label('img') ->image() ->required() // this is working ->rules([ // 'required', 'dimensions:width=100,height=200', // Rule::dimensions()->width(10)->height(50), ]), ``` But In dynamic...
Hi Dan, I've updated to `3.2.53` which contain #11907 and I use like below. But these validation are still not working.. Any idea ```php Forms\Components\FileUpload::make('img') ->label('img') ->image() ->nestedRecursiveRules([ 'required', 'dimensions:width=100,height=200',...
For ease of checking `dimensions`, here are my finding in below environments - Laravel `v11.0.8` - Livewire `v3.4.9` - Filament `v3.2.58` ```php // rules() is working if Fileupload is not...
It's also seems like I cannot change validation messages which is inside `rules()` or `nestedRecursiveRules()` for FileUpload ```php Forms\Components\FileUpload::make('img') ->required() ->rules([ 'dimensions:width=100,height=200', ]) ->validationMessages([ 'required' => 'Error!!!!', // working 'dimensions'...
Oh, this is the fix... :rofl: I try to create a fix but I cannot figure out. this is the easy one. Checked and working perfect. thanks for this PR