@include('Partials.sidebar') @include('Partials.header') @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif Why Marquis Second Section Why Marquis Section Form @csrf Section Title: Section Description: {{ old('section_description', $whyMarquis->section_description ?? '') }} Cards: @php $slideContents = isset($whyMarquis) && !empty($whyMarquis->cards) ? json_decode($whyMarquis->cards, true) : []; if (!is_array($slideContents)) $slideContents = []; if (empty($slideContents)) { $slideContents = [ ['card_title' => '', 'card_description' => '', 'image' => ''] ]; } @endphp @foreach ($slideContents as $index => $slides_content) Card Title: Card Description: {{ old('card_description-' . $index, $slides_content['card_description'] ?? '') }} Card Image *Dimension: 820px X 602px @if (!empty($slides_content['image'])) @else @endif Choose Image Remove Slide @endforeach Add New Slide {{ isset($whyMarquis) ? 'Update' : 'Submit' }} @include('Partials.footer')