@extends('layouts.app') @section('sidebar') @include('sidebar') @stop @section('content')

Tutorial

@if(Session::has('success'))
{!! Session::get('success') !!}
@endif
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Tutorial Name
Content Title
PDF Content
Video Content
@endsection @section('script') {{ Html::script('custom/eModal/eModal.js') }} {{ Html::script('custom/datatables/datatables.bundle.js') }} @endsection