{!! 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]) !!}
Cancel {!! Form::submit($submitButtonText, ['id' => 'form_submit', 'class' => 'btn-primary inline-flex items-center']) !!}
@push('scripts') @endpush