@extends('layouts.app') @section('content')
Page @include('component.breadcrumb', ['items' => ['Web', 'Page', 'Edit']])
@include('component.flash')
{{ csrf_field() }} {{ method_field('PATCH') }}
@include('web.page.panel.general') @include('web.page.panel.publish') @include('web.page.panel.image') @include('web.page.panel.tag') @include('web.page.panel.file') @include('web.page.panel.url') @include('web.page.panel.gallery') @include('web.page.panel.style')
@if (current_route_matches('PageController@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