@extends('admin.layouts.layouts') @section('title', 'Create | Travel Plan') @section('page-css') @endsection @section('content')
{!! Form::open([ 'route' => 'travel-plan.store', 'method' => 'POST', 'id' => 'travel-plan-form', 'enctype' => 'multipart/form-data', ]) !!} @csrf
{{ $errors->first('destination_type') }}
{{ $errors->first('type') }}
{{ $errors->first('start_date') }}
{{ $errors->first('end_date') }}
{{--
{{ $errors->first('purpose_id') }}
--}}
{{ $errors->first('send_to_travel_desk') }}
Start Date * End Date * Purpose * Name Of Destination * State * District * Sub District City Remark *
{{ $errors->first('start_date_travel_detail.0') }} {{ $errors->first('end_date_travel_detail.0') }} {{ $errors->first('purpose_id.0') }} {{ $errors->first('destination_name.0') }} {{ $errors->first('state.0') }} {{ $errors->first('district.0') }} {{ $errors->first('sub_district.0') }} {{ $errors->first('city.0') }} {{ $errors->first('remark.0') }}
{{ Form::close() }}
@endsection @section('page-js') @endsection