{!! Form::open(['url' => route('cities.store'), 'method' => 'post', 'id' => 'trip_cities_form']) !!}

@lang('locations::lang.add_country')

{!! Form::label('state_id', __('locations::lang.states') . ':' ) !!}
{!! Form::select('state_id', $states, null , ['class' => 'form-control select2', 'id' => 'state_id', 'style' => 'width: 100%;']); !!}
{!! Form::label('name', __('tracker::lang.Name') . ':*') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __('tracker::lang.Name')]) !!}
{!! Form::close() !!}