@include('content::content.form.field', [
'lang' => $locale['default'] ?? 'th',
'param' => $data ?? '',
])
@if (!empty($locale['langs']))
@foreach ($locale['langs'] as $lng)
@if ($lng != ($locale['default'] ?? 'th'))
@include('content::content.form.field', [
'lang' => $lng,
'param' => $data->translate[$lng] ?? null,
])
@endif
@endforeach
@endif