@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('type_id'))
{{ $errors->first('type_id') }}
@endif
@if ($errors->has('priority_id'))
{{ $errors->first('priority_id') }}
@endif
@if ($errors->has('attachment_file'))
{{ $errors->first('attachment_file') }}
@endif
@endsection @section('script') @endsection