Edit Post
{!! Form::model($post, ['url' => 'admin/post/update']) !!}
{!! Form::hidden('id', $post->id) !!}
{!! Form::close() !!}
{!! Form::text('title', null, array('class' => 'form-control', 'id' => 'inputTitle')) !!}
{!! Form::select('category_id', $categories, $post->category_id, array('class' => 'form-control', 'id' => 'inputCategory')) !!}
{!! Form::select('status', array('1' => 'Active', '0' => 'Inactive'), $post->status, array('class' => 'form-control', 'id' => 'inputStatus')) !!}
{!! Form::text('image', null, array('class' => 'form-control', 'id' => 'inputImage', 'readonly' => true)) !!}
{!! Form::textarea('content', null, array('class' => 'form-control', 'rows' => 10)) !!}