@if ($errors->has('address1'))
{{ $errors->first('address1') }}
@endif
@if ($errors->has('address2'))
{{ $errors->first('address2') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@foreach ($states as $key => $state)
@endforeach
@if ($errors->has('state'))
{{ $errors->first('state') }}
@endif
@if(isset($user) && $user->district)
@foreach ($districts as $key => $district)
@endforeach
@endif
@if ($errors->has('district'))
{{ $errors->first('district') }}
@endif
@if(isset($user) && $user->city)
@foreach ($cities as $key => $city)
@endforeach
@endif
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if ($errors->has('pincode'))
{{ $errors->first('pincode') }}
@endif