@foreach ($fields as $field)
@if ($field['type'] == 'image')
@if ($field['recommend_size'] ?? false)
{{ __('common.recommend_size') }} {{ $field['recommend_size'] }}
@endif
@endif
@if ($field['type'] == 'string')
@endif
@if ($field['type'] == 'multi-string')
@endif
@if ($field['type'] == 'select')
@if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif
@if ($field['type'] == 'bool')
@if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif
@if ($field['type'] == 'textarea')
@if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif
@if ($field['type'] == 'multi-textarea')
@if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif
@if ($field['type'] == 'rich-text')
@if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif
@if ($field['type'] == 'multi-rich-text')
@if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif
@if ($field['type'] == 'checkbox')
@if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif
@endforeach