@extends('layouts.admin') @section('content')

Manage Sections for {{$topic}}

{{-- Add book --}}
@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  1. {{$error}}
  2. @endforeach
@endif

Add Section

@include('includes.section-form')
{{-- --}}
Sections
@if ($sections->total() == 0)

No section found

@endif @foreach ($sections as $section)
{{$section->name}}

@php echo$section->description @endphp


@php echo$section->instructions @endphp


@endforeach
@endsection