{!! Form::model($tripSchedule, [ 'url' => route('trip-routes.update', $tripSchedule->id), 'method' => 'PUT', 'id' => 'edit_routes_form' ]) !!}
@lang('tracker::lang.Edit Route')
{!! Form::label('location_id', __('lang.location') . ':' ) !!}
{!! Form::select('location_id', getLocations(null, false), $tripSchedule->location_id??auth()->user()->location_id , ['class' => 'form-control select2', 'id' => 'location_id', 'required', 'style' => 'width: 100%;']); !!}
{{-- العنوان --}}
{!! Form::label('title', __('tracker::lang.title') . ":*") !!} {!! Form::text('title', null, ['class' => 'form-control', 'required']) !!}
{{-- الجهاز --}}
{!! Form::label('user_ids', 'Salesperson Devices') !!} {!! Form::select('user_ids[]', getSalesPersons(), old('user_ids', $user_ids) ?? [], [ 'class' => 'form-control select2', 'multiple' => true, 'required', 'style' => 'width: 100%;', ]) !!}
{{-- تواريخ الجدولة --}}
{!! Form::label('start_date', __('tracker::lang.Schedule start date') . ':*') !!}
{!! Form::text('start_date', @format_date($tripSchedule->start_date), [ 'class' => 'form-control datepicker', 'required', 'readonly' ]) !!}
{!! Form::label('end_date', __('tracker::lang.Schedule end date') . ':*') !!}
{!! Form::text('end_date', @format_date($tripSchedule->end_date), [ 'class' => 'form-control datepicker', 'required', 'readonly' ]) !!}
{{--
{!! Form::label('country_id', __('business.country') . ':' ) !!}
{!! Form::select('country_id', $countries, $tripSchedule->country_id , ['class' => 'form-control select2', 'id' => 'country_id', 'placeholder' => __('lang.selected'), 'style' => 'width: 100%;']); !!}
--}}
{!! Form::label('state_id', __('business.state') . ':' ) !!}
{!! Form::select('state_id', statesDefault(), $tripSchedule->state_id , ['class' => 'form-control select2', 'id' => 'state_id', 'placeholder' => __('lang.selected'), 'style' => 'width: 100%;']); !!}
{!! Form::label('city_id', __('business.city') . ':' ) !!}
{!! Form::select('city_id', $cities??[], $tripSchedule->city_id , ['class' => 'form-control select2', 'id' => 'city_id', 'placeholder' => __('lang.selected'), 'style' => 'width: 100%;']); !!}

{!! Form::close() !!}