@extends('backend.layouts.app') @section('content')
Create Test
@csrf
@if($errors->has('course_id')) {{ $errors->first('course_id') }} @endif
@if($errors->has('lesson_id')) {{ $errors->first('lesson_id') }} @endif
@if($errors->has('title')) {{ $errors->first('title') }} @endif
@if($errors->has('description')) {{ $errors->first('description') }} @endif
@if($errors->has('published')) {{ $errors->first('published') }} @endif
@endsection