{{Form::text("key",'',['class'=>"form-control",'placeholder'=>'لإدخال الكلمة التي تريد إضافة مرادفات لها'])}}
{{ Form::select(
"synonyms[]", // Name attribute for the select element
[], // Options (empty array since placeholders aren't options)
$settings->where('key', 'typoToleranceEnabled')->first()->value, // Selected value
[
'class' => "form-control js-example-tags", // CSS class for styling
'multiple' => true, // Allow multiple selections
// 'placeholder' => 'الكلمات التي سيتم اعتبارها مكافئة للكلمة الأساسية عند البحث', // Placeholder text
]
) }}