Form Component : Size avatar in Fileupload
Hi all , i have a question . im using fileupload and set avatar mode . is there a way to resize to make it a bit bigger ? because default size is small
Solution:Jump to solution
You have to do two things to change the size, the first is to change the size of the field container like this:
```php
FileUpload::make('avatar')
->avatar()...
2 Replies
Solution
You have to do two things to change the size, the first is to change the size of the field container like this:
Then you need to add this CSS to your Filament theme:
Thanks man. It worked.