@extends("app")
@section('head_title', trans('addpost.edit', ['type' => $post->title]) . ' | ' . get_buzzy_config('sitename'))
@section('body_class', 'mode-add')
@section('header')
@include('editor._header-scripts')
@endsection
@section('content')
{!! Form::open(['action' => ['PostEditorController@editPost', $post->id], 'method' => 'POST', 'onsubmit' => 'return
false', 'enctype' => 'multipart/form-data']) !!}
@include('editor._sidebar')
{!! Form::close() !!}
@endsection
@section('footer')
@include('editor._footer-scripts')
@endsection