@if(isset($region_id)) @endif @if(count($states))
@foreach($states as $key => $state) @endforeach
{!! Form::checkbox('state[]', 0 , false ,['id' => 'all-states']) !!} State Country
{!! Form::checkbox('state[]', $state->id, false,['class' => 'check-state']) !!} {{$state->name}} {{optional(optional($state->region)->region)->name ? $state->region->region->name : $state->country->title}}
@else

No States Available

@endif