@extends('dashboard.layouts.app')
@section('title', __('Edit Availability for') . ' ' . $teacher->name)
@section('page_heading', __('Edit Availability for') . ' ' . $teacher->name)
@section('breadcrumb')
{{ __('Home') }}
{{ __('Teachers') }}
{{ $teacher->name }}
{{ __('Edit Availability') }}
@endsection
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{-- Shift Availability Form --}}
@endsection
@section('scripts')
@endsection