@extends('layouts.app_view'); @section('content')

Add New Classroom

{{-- Add a classroom name and a description for it.--}}

{{-- This @csrf is for more secure form requests.--}} @csrf
@if ($errors->has('name'))
{{$errors->first('name')}}
@endif
@if ($errors->has('description'))
{{$errors->first('description')}}
@endif
Cancel
@endsection