@extends('layouts.app') @push('pg_btn') All Posts @endpush @section('content')
{!! Form::open(['route' => ['post.update', $post], 'method'=>'put', 'files' => true]) !!}
Post information
{{ Form::label('post_title', 'Post title', ['class' => 'form-control-label']) }} {{ Form::text('post_title', $post->post_title, ['class' => 'form-control']) }}
{{ Form::label('category_id', 'Select Category', ['class' => 'form-control-label']) }} {{ Form::select('category_id', $categories, $post->category_id, [ 'class'=> 'selectpicker form-control', 'placeholder' => 'Select category...']) }}
{{ Form::label('featured_image', 'Featured image', ['class' => 'form-control-label d-block']) }}
@if ($post->featured_image) Image placeholder @endif
{{ Form::label('post_body', 'Post Body', ['class' => 'form-control-label']) }} {!! Form::textarea('post_body', $post->post_body, ['id'=>"summernote", 'class'=> 'form-control',]) !!}

status ? 'checked' : ''}} class="custom-control-input" id="status"> {{ Form::label('status', 'Status', ['class' => 'custom-control-label']) }}
{{ Form::submit('Submit', ['class'=> 'mt-5 btn btn-primary']) }}
{!! Form::close() !!}
@endsection @push('styles') @endpush @push('scripts') @endpush