Form elements disabled issue solved..

This commit is contained in:
Cüneyt Şentürk
2020-03-20 17:25:21 +03:00
parent 07e36e3ef2
commit 9f3bca6e1f
11 changed files with 11 additions and 11 deletions

View File

@ -21,7 +21,7 @@
{{ Form::textGroup('name', trans('general.name'), 'font') }}
@if ($type_disabled)
{{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, $category->type, ['required' => 'required', 'disabled' => 'disabled']) }}
{{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, $category->type, ['required' => 'required', 'disabled' => 'true']) }}
<input type="hidden" name="type" value="{{ $category->type }}" />
@else
{{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, $category->type) }}