@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('user_id'))
{{ $errors->first('user_id') }}
@endif
@if ($errors->has('travel_type'))
{{ $errors->first('travel_type') }}
@endif
@if ($errors->has('motive'))
{{ $errors->first('motive') }}
@endif
@if ($errors->has('place'))
{{ $errors->first('place') }}
@endif
@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
@if ($errors->has('expect_amount'))
{{ $errors->first('expect_amount') }}
@endif
@if ($errors->has('actual_amount'))
{{ $errors->first('actual_amount') }}
@endif
@if ($errors->has('mode'))
{{ $errors->first('mode') }}
@endif
@if ($errors->has('attachment'))
{{ $errors->first('attachment') }}
@endif
@include('backend.performance.goal.goal_select')
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if (@$data['url'])
@endif
@endsection @section('script') @endsection