@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
@foreach ($data['clients'] as $client) @endforeach @if ($errors->has('client_id'))
{{ $errors->first('client_id') }}
@endif
@if ($errors->has('progress'))
{{ $errors->first('progress') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if ($errors->has('billing_type'))
{{ $errors->first('billing_type') }}
@endif
@if ($errors->has('total_rate'))
{{ $errors->first('total_rate') }}
@endif
@if ($errors->has('per_rate'))
{{ $errors->first('per_rate') }}
@endif
@if ($errors->has('estimated_hour'))
{{ $errors->first('estimated_hour') }}
@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
@if ($errors->has('amount'))
{{ $errors->first('amount') }}
@endif
@if ($errors->has('priority'))
{{ $errors->first('priority') }}
@endif
@include('backend.performance.goal.goal_select')
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if (@$data['url'])
@endif
@endsection @section('script') @endsection