@extends('layouts.app') @section('titlePage', 'Supervise Course') @section('content')
@include('common.alert')
@include('common.script.view-multi-section')
{{--
@include('common.lfm', [ 'type' => 'image', 'name' => 'Image', 'input' => 'image', 'required' => true, 'file' => $data->image ?? null, ])
--}}
@if(old('section') != null) @php $i = 0; @endphp @foreach(old('section') as $key => $oldData)

@php $i++ @endphp @endforeach @else @if(!empty($data->sections_course) && count($data->sections_course)) @php $i = 0 @endphp @foreach($data->sections_course as $section)

@php $i++ @endphp @endforeach @else

@endif @endif
@push('script') @endpush @endsection @section('script') @include('client.course.script') @endsection