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

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

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