@extends('backend.layouts.app') @section('breadcrumb') @endsection @section('content')
{{ __('Edit Section') }}
{!! Form::open(['route' => ['admin.homesections.destroy', 'homesection' => $homesection], 'id' => 'deleteForm', 'method' => 'DELETE']) !!} {!! Form::close() !!}
Back @can('homesections.delete') Delete @endcan
{!! Form::model($homesection, ['route' => ['admin.homesections.update', $homesection], 'method' => 'PUT']) !!} @include('backend.forms.homesection') {!! Form::close() !!}
@endsection