@extends('layouts.app') @section('title') {{ __('messages.post.edit_post') }} @endsection @section('header_toolbar')

@yield('title')

@endsection @section('content')
@include('layouts.errors')
{{ Form::model($post, ['route' => ['posts.update', $post->id], 'method' => 'put', 'id' => 'editBlogForm', 'files' => 'true']) }} @include('blogs.fields') {{ Form::close() }}
@endsection @push('scripts') {{-- --}} @endpush