Merge pull request #2448 from CihanSenturk/select-group-placeholder
Select placeholder made dynamic
This commit is contained in:
@ -215,6 +215,10 @@ abstract class Form extends Component
|
||||
$label = $this->name;
|
||||
}
|
||||
|
||||
if ($this->type == 'select') {
|
||||
return trans('general.form.select.field', ['field' => $label]);
|
||||
}
|
||||
|
||||
return trans('general.form.enter', ['field' => $label]);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user