@extends('backend.layouts.app') @section('title', @$data['title']) @section('content')

{{ @$data['title'] }}

@csrf @method('PATCH')
@if ($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
@if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
@if ($errors->has('department_id'))
{{ $errors->first('department_id') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@endsection