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

{{isset($teacher)? 'Edit': 'Add New'}} Teacher {{isset($teacher)? 'with The Number: '.$teacher->teacher_num: ''}}

Assign the teacher a classroom and subject.

@csrf
@if ($errors->has('first_name'))
{{$errors->first('first_name')}}
@endif
@if ($errors->has('surname'))
{{$errors->first('surname')}}
@endif
@if ($errors->has('birth_date'))
{{$errors->first('birth_date')}}
@endif
{{-- Todo: I will add subject assigning page for the teacher.--}} {{--
{{ csrf_field() }}
--}}
@if ($errors->has('phone_number'))
{{$errors->first('phone_number')}}
@endif
@if ($errors->has('email'))
{{$errors->first('email')}}
@endif
@if ($errors->has('address'))
{{$errors->first('address')}}
@endif
@if ($errors->has('photo'))
{{$errors->first('photo')}}
@endif
Cancel
@endsection