{{ Form::label('state_id', 'State') }}
{{ Form::select('state_id', states(), $city->state_id, ['class' => 'form-control form-select', 'placeholder' => '--Select--','required']) }}
{{ Form::label('name') }}
{{ Form::text('name', $city->name, ['class' => 'form-control', 'placeholder' => 'Name','required']) }}