{!! Form::label('الاسم', 'الاسم:') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('الوصف', 'الوصف:') !!} {!! Form::textarea('description', null, ['class' => 'form-control','id'=>'summary-ckeditor']) !!}
{!! Form::label('الصورة', 'الصورة:') !!}
{!! Form::file('image', ['class' => 'custom-file-input']) !!} {!! Form::label('image', 'Choose file', ['class' => 'custom-file-label']) !!}
{!! Form::label('القسم', 'القسم:') !!} {!! Form::select('category_id', $categoryItems, null, ['class' => 'form-control custom-select']) !!}