feat: re-enable image editor and aspect ratios for blog and page settings

This commit is contained in:
Muhammet Güler
2026-02-09 15:18:59 +03:00
parent 177ebff119
commit b289cfd829
2 changed files with 12 additions and 0 deletions
@@ -71,6 +71,12 @@ class BlogForm
->disk('public')
->directory('blogs/featured')
->visibility('public')
->imageEditor()
->imageEditorAspectRatios([
'16:9',
'4:3',
'1:1',
])
->helperText(__('blog.featured_image_helper'))
->columnSpanFull(),
@@ -21,6 +21,12 @@ class PageSettingsSection
->disk('public')
->directory('pages/featured')
->visibility('public')
->imageEditor()
->imageEditorAspectRatios([
'16:9',
'4:3',
'1:1',
])
->helperText(__('pages.featured_image_helper_text'))
->columnSpanFull(),