@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@csrf
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('location'))
{{ $errors->first('location') }}
@endif
@if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
@if ($errors->has('appoinment_with'))
{{ $errors->first('appoinment_with') }}
@endif
@if ($errors->has('appoinment_start_at'))
{{ $errors->first('appoinment_start_at') }}
@endif
@if ($errors->has('appoinment_end_at'))
{{ $errors->first('appoinment_end_at') }}
@endif
@endsection