@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('user_id'))
{{ $errors->first('user_id') }}
@endif
@if ($errors->has('start_at'))
{{ $errors->first('start_at') }}
@endif
@if ($errors->has('end_at'))
{{ $errors->first('end_at') }}
@endif
@if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
{{--
--}} {{--
--}} {{-- --}} {{-- --}} {{-- @if ($errors->has('gmeet_link'))--}} {{--
{{ $errors->first('gmeet_link') }}
--}} {{-- @endif--}} {{--
--}} {{--
--}}
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if (@$data['url'])
@endif
@endsection @section('script') @endsection