{!! Form::label('الاسم', 'الاسم:') !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('الوصف', 'الوصف:') !!}
{!! Form::textarea('description', null, ['class' => 'form-control','id'=>'summary-ckeditor']) !!}
{!! 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']) !!}