@extends('backend.layouts.master') @section('content')

Edit Post

{!! Form::model($post, ['method' => 'PATCH', 'action' => ['Admin\PostController@update', $post->id]])!!}
@include('backend.post.partial')
{!! Form::select('category_id', App\Models\Category::orderBy('id')->pluck('title', 'id'), null, ['class' => 'form-control select2', 'required']) !!}
Browse
@if ($post->feature_image !="")
@else @endif {!! Form::hidden('feature_image', null) !!}
{!! Form::close() !!}
@endsection