{!! Form::text('title', NULL, ['class' => 'w-full', 'id' => 'title', 'placeholder' => 'Enter article title...', 'required' => true]) !!}
{!! Form::select('category', $categories, NULL, ['class' => 'w-full', 'id' => 'category', 'required' => true]) !!}
{!! Form::textarea('content', NULL, ['id' => 'summernote', 'class' => 'w-full', 'rows' => '10', 'required' => true]) !!}