@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@csrf @php $now = \Carbon\Carbon::now(); @endphp
@if ($errors->has('shift_id'))
{{ $errors->first('shift_id') }}
@endif
@if ($errors->has('consider_time'))
{{ $errors->first('consider_time') }}
@endif
@if ($errors->has('start_time'))
{{ $errors->first('start_time') }}
@endif
@if ($errors->has('end_time'))
{{ $errors->first('end_time') }}
@endif
@if ($errors->has('end_on_same_date'))
{{ $errors->first('end_on_same_date') }}
@endif
@if ($errors->has('status_id'))
{{ $errors->first('status_id') }}
@endif
@endsection @section('script') @include('backend.partials.datatable') @endsection