@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('month'))
{{ $errors->first('month') }}
@endif
@if ($errors->has('estimated_hour'))
{{ $errors->first('estimated_hour') }}
@endif
@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
@include('backend.performance.goal.goal_select')
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if (@$data['url'])
@endif
@endsection @section('script') @endsection