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