@extends('template.admin') @section('header') @stop @section('container')

Post

{!! Form::model($post, ['route' => ['post.update', $post->slug] , 'files' => true, 'method' => "PATCH"]) !!}

Update Post

Fill this form with lastest post content

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include('admin.post._form')
{!! Form::close() !!}
@stop @section('footer') @stop