@extends('backend.layouts.master') @section('pageTitle') Section @endsection @section('bodyCssClass') @endsection @section('pageContent')

Section @if($section) Update @else Add New @endif

Note: Create a teacher and class before create new section.

@csrf
{{ $errors->first('name') }}
{{ $errors->first('capacity') }}
{!! Form::select('class_id', $classes, $iclass , ['placeholder' => 'Pick a class...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('class_id') }}
{!! Form::select('teacher_id', $teachers, $teacher , ['placeholder' => 'Pick a teacher...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('teacher_id') }}
{{ $errors->first('note') }}
@endsection @section('extraScript') @endsection