@extends('layout.admin') @section('css') @endsection @section('content')

{{ $specialEvent ? 'Edit' : 'Create' }} Special Event Form

@csrf
Active/Inactive
@if ($errors->any())

Error!

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('error'))
{{ session('error') }}
@endif
    @foreach ($contents as $index => $content)
  • {{ $index + 1 }} ID: {{ $content->id }} | {{ $content->heading }}
  • @endforeach
@endsection @section('js') @endsection