{{-- @dd(config('app.locale')) --}} @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('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('priority'))
{{ $errors->first('priority') }}
@endif
@if ($errors->has('progress'))
{{ $errors->first('progress') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
@if ($errors->has('user_ids'))
{{ $errors->first('user_ids') }}
@endif
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if (@$data['url'])
@endif
@endsection @section('script') @endsection