@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!} @include('travel::travel-plans.nav', ['plan_id' => $data['travelMeeting']->travel_plan_id, 'is_approved' => true])
@csrf @method('PUT')

{{ _trans('common.Edit Meeting Form') }}

@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('meeting_schedule_time')) {{ $errors->first('meeting_schedule_time') }} @endif
@if ($errors->has('meeting_start_time')) {{ $errors->first('meeting_start_time') }} @endif
@if ($errors->has('meeting_end_time')) {{ $errors->first('meeting_end_time') }} @endif
@if ($errors->has('customer_company_name')) {{ $errors->first('customer_company_name') }} @endif
@if ($errors->has('customer_name')) {{ $errors->first('customer_name') }} @endif
@if ($errors->has('customer_email')) {{ $errors->first('customer_email') }} @endif
@if ($errors->has('customer_phone')) {{ $errors->first('customer_phone') }} @endif
@if ($errors->has('purpose')) {{ $errors->first('purpose') }} @endif
@if ($errors->has('remark')) {{ $errors->first('remark') }} @endif
@if ($errors->has('file')) {{ $errors->first('file') }} @endif
@if ($errors->has('rating_of_meeting_experience')) {{ $errors->first('rating_of_meeting_experience') }} @endif
{{ _trans('common.Back to list') }}
@endsection