{!! Form::label('attribute_type_id', trans('app.form.attribute_type') . '*', ['class' => 'with-help']) !!} {!! Form::select('attribute_type_id', $typeList, null, ['class' => 'form-control select2-normal', 'placeholder' => trans('app.placeholder.attribute_type'), 'required']) !!}
{!! Form::label('name', trans('app.form.attribute_name') . '*') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.attribute_name'), 'required']) !!}
{!! Form::label('order', trans('app.form.list_order')) !!}
{!! Form::number('order', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.list_order')]) !!}
{!! Form::label('categories[]', trans('app.form.categories')) !!} {!! Form::select('categories[]', $categories, $selectedCategories ?? null, ['class' => 'form-control select2-normal', 'multiple' => 'multiple']) !!}

* {{ trans('app.form.required_fields') }}