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