@php /* $layout_page = shop_profile $user $countries */ @endphp @extends($sc_templatePath.'.layout') @section('block_main')
@include($sc_templatePath.'.account.nav_customer')

{{ $title }}

@csrf @if (sc_config('customer_lastname'))
@if($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@else
@if($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@endif @if (sc_config('customer_phone'))
@if($errors->has('phone')) {{ $errors->first('phone') }} @endif
@endif @if (sc_config('customer_postcode'))
@if($errors->has('postcode')) {{ $errors->first('postcode') }} @endif
@endif @if (sc_config('customer_address2'))
@if($errors->has('address1')) {{ $errors->first('address1') }} @endif
@if($errors->has('address2')) {{ $errors->first('address2') }} @endif
@else
@if($errors->has('address1')) {{ $errors->first('address1') }} @endif
@endif @if (sc_config('customer_country')) @php $country = (old('country'))?old('country'):$address['country']; @endphp
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@endif @if ($address->id != auth()->user()->address_id)
@endif
@endsection {{-- breadcrumb --}} @section('breadcrumb') @endsection {{-- //breadcrumb --}}