@extends('layouts.app') @section('content')
Post @include('component.breadcrumb', ['items' => ['Web', 'Post', 'Edit']])
@include('component.flash')
{{ csrf_field() }} {{ method_field('PATCH') }}
@include('web.post.panel.general') @include('web.post.panel.publish') @if($post->categories->first()->slug == 'event') @include('web.post.panel.preview') @endif @include('web.post.panel.sticky') @include('web.post.panel.image') @include('web.post.panel.slug') @include('web.post.panel.tag') @include('web.post.panel.file') @include('web.post.panel.url') @include('web.post.panel.gallery') @include('web.post.panel.style')
@if (current_route_matches('PostController@editTranslation'))
{{ csrf_field() }} {{ method_field('DELETE') }} @include('component.sweetalert-delete', ['button' => '.btn-delete', 'form' => '.form-delete', 'text' => 'This item will be permanently deleted'])
@endif
@stop