{{ Form::textarea('full_text', null,
array(
"class" => "form-control editor-html",
"id" => "exampleInputContent"
)) }}
{{ Form::textarea('intro_text', null,
array(
"class" => "form-control",
"id" => "exampleIntroText",
"rows" => 2
)) }}
@if(!empty($article->intro_image))
@endif
{{ Form::file('intro_image') }}
{{ Form::hidden('category_id', $category->id) }}
{{ Form::select('state', $states, null,
array(
"class" => "form-control",
"id" => "exampleInputState"
))
}}
@if($article->exists)