@extends('admin.layouts.master') @section('title') Starter Page @endsection @section('css') @endsection @section('content')

{{ __('timetable.add_title') }}

@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection @section('script') @endsection