{!! Form::model($data, ['url' => route('states.update', $data->id), 'method' => 'put', 'id' => 'trip_states_form']) !!}

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

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