{!! 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::text('client_name', null, ['class' => 'form-control']) !!}
{!! Form::label('لينك الفيديو', 'لينك الفيديو:') !!} {!! Form::text('video_link', null, ['class' => 'form-control']) !!}
{!! Form::label('تاريخ المشروع', 'تاريخ المشروع :') !!} {{-- --}} {!! Form::date('date_of_starting', null, ['class' => 'form-control', 'id'=>'datetimepicker']) !!}
{!! Form::label('القسم', 'القسم:') !!} {!! Form::select('category_id', $categoryItems, null, ['class' => 'form-control custom-select']) !!}
{!! Form::label('معرض الصور', 'معرض الصور:') !!}
{!! Form::file('gallery[]', ['class' => 'custom-file-input','multiple' => true]) !!} {!! Form::label('gallery', 'Choose file', ['class' => 'custom-file-label']) !!}