{!! Form::text('title', null, [
'class' => 'form-control input-lg',
'placeholder' => trans('blog/form.ph-title'),
]) !!}
{{ $errors->first('title', ':message') }}
{!! Form::textarea('content', null, [
'class' => 'textarea form-control font_size14',
'placeholder' => trans('blog/form.ph-content'),
'style' => 'style="width: 100%;line-height: 18px; border: 1px solid #dddddd; padding: 10px;"',
]) !!}
{{ $errors->first('content', ':message') }}
{!! Form::select('blog_category_id', $blogcategory, null, [
'class' => 'form-control select2',
'id' => 'blog_category',
'placeholder' => trans('blog/form.select-category'),
]) !!}
{{ $errors->first('blog_category_id', ':message') }}
{!! Form::text('tags', $blog->tagList, [
'class' => 'form-control input-lg',
'data-role' => 'tagsinput',
'placeholder' => trans('blog/form.tags'),
]) !!}