{!! Form::label('title', 'City Name') !!}
{!! Form::text('title', $item->title, ['class' => 'form-control b-field__input -content', 'placeholder' => 'City Name', 'readonly' => $isReadonly]) !!}
{!! Form::label('is_active', 'Country') !!}
{!! Form::select('country_id', $countries, $item->country_id, ['class' => 'form-control b-field__select js-sumo-select-search']) !!}
{!! Form::label('is_active', 'City Status') !!}
{!! Form::select('is_active', config('params.active'), $item->is_active, ['class' => 'form-control b-field__select js-select']) !!}