{!! Form::label('title', 'Title') !!} {!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Title of Post']) !!} @if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
{!! Form::label('body', 'Body') !!} {!! Form::textarea('body', null, ['class' => 'form-control ckeditor', 'placeholder' => 'Body of Post...']) !!} @if ($errors->has('body'))

{{ $errors->first('body') }}

@endif
@push('scripts') @endpush