@if (Laravel\Jetstream\Jetstream::managesProfilePhotos())
{{ __('Select A New Photo') }}
@if ($this->user->profile_photo_path)
{{ __('Remove Photo') }}
@endif
@endif
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::emailVerification()) && ! $this->user->hasVerifiedEmail())
{{ __('Your email address is unverified.') }}
@if ($this->verificationLinkSent)
{{ __('A new verification link has been sent to your email address.') }}
@endif
@endif
{!! Form::select('country', [''=>'Country of Residence']+countries(), null, array('wire:model.defer'=>"state.country",'class'=>'mt-1 block w-full', 'id'=>'country', 'required'=>'required'),optionAttributes(dropdown(22),'wire:key')) !!}