@foreach (['high' => 'Red: Very high demand, few riders available.', 'moderate' => 'Orange: Moderate demand, needs more riders.', 'normal' => 'Yellow: Normal demand, well-balanced.', 'low' => 'Green: Low demand, no action needed.'] as $level => $description)
{{ $description }}
@endforeach
{{ html()->select('country_id', isset($data) ? [$data->country->id => $data->country->name] : [], old('country_id'))->class('select2js form-group country_id')->attribute('data-placeholder', __('message.country'))->attribute('data-ajax--url', route('ajax-list', ['type' => 'country-list'])) }}
{{ html()->select('city_id', isset($data) ? [$data->city->id => $data->city->name] : [], old('city_id'))->class('select2js form-group city_id')->attribute('data-placeholder', __('message.city')) }}
@section('bottom_script') @endsection