@extends('layouts.admin') @section('content')
@include('settings.leftbar')

{{ $title }}

@csrf
@php $index=0; @endphp @foreach ($blocks as $block) @php $index++; @endphp

{{ 'Section '.$index.' - '.Str::ucfirst($block->type) }}

@php $blockItems=$block->block_items; $blockItemsArray=$blockItems->pluck('id')->toArray() @endphp
@if ($items->count() > 0) @endif
@error('item') {{ $message }} @else   @enderror
@endforeach
@endsection @push('scripts') @endpush