We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55396e7 commit a13da72Copy full SHA for a13da72
src/Models/Setting.php
@@ -61,9 +61,10 @@ public static function getForm(): array
61
->maxLength(1000)
62
->columnSpanFull(),
63
FileUpload::make('logo')
64
+ ->hint('Max height 400')
65
->directory('setting/logo')
66
->maxSize(1024 * 1024 * 2)
- ->rules('dimensions:max_height=60')
67
+ ->rules('dimensions:max_height=400')
68
->nullable()->columnSpanFull()
69
])->columns(2),
70
0 commit comments