@if (isset($customer) && isset($customer->getFirstMedia('image')->original_url))
@endif
@if (Request::is('backend/customer/create'))
@endif
@php
if (isset($customer->primaryAddress->country_id) || old('country_id')) {
$states = \App\Models\State::where(
'country_id',
old('country_id', @$customer->primaryAddress->country_id),
)->get();
} else {
$states = [];
}
@endphp
@push('js')
@endpush