{!! Form::open(['url' => route('ecommerce.store-locators.update-primary-store')]) !!}
{!! Form::customSelect('primary_store_id', $storeLocators->pluck('name', 'id')->all(), ($storeLocators->where('is_primary', true)->first() ? $storeLocators->where('is_primary', true)->first()->id : null), [ 'class' => 'form-control', ]) !!}
{!! Form::close() !!}