@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')) {{ trans('account.first_name') }} @if($errors->has('first_name')) {{ $errors->first('first_name') }} @endif {{ trans('account.last_name') }} @if($errors->has('last_name')) {{ $errors->first('last_name') }} @endif @else {{ trans('account.name') }} @if($errors->has('first_name')) {{ $errors->first('first_name') }} @endif @endif @if (sc_config('customer_name_kana')) {{ trans('account.first_name_kana') }} @if($errors->has('first_name_kana')) {{ $errors->first('first_name_kana') }} @endif {{ trans('account.last_name_kana') }} @if($errors->has('last_name_kana')) {{ $errors->first('last_name_kana') }} @endif @endif @if (sc_config('customer_phone')) {{ trans('account.phone') }} @if($errors->has('phone')) {{ $errors->first('phone') }} @endif @endif @if (sc_config('customer_postcode')) {{ trans('account.postcode') }} @if($errors->has('postcode')) {{ $errors->first('postcode') }} @endif @endif {{ trans('account.email') }} {{ $user['email'] }} @if (sc_config('customer_address2')) {{ trans('account.address1') }} @if($errors->has('address1')) {{ $errors->first('address1') }} @endif {{ trans('account.address2') }} @if($errors->has('address2')) {{ $errors->first('address2') }} @endif @else @if (sc_config('customer_address1')) City @if($errors->has('address1')) {{ $errors->first('address1') }} @endif @endif @endif @if (sc_config('customer_country')) @php $country = (old('country'))?old('country'):$user['country']; @endphp {{ trans('account.country') }} __{{ trans('account.country') }}__ @foreach ($countries as $k => $v) {{ $v }} @endforeach @if ($errors->has('country')) {{ $errors->first('country') }} @endif @endif @if (sc_config('customer_sex')) @php $sex = old('sex')?old('sex'):$user['sex']; @endphp Bride Groom @if($errors->has('sex')) {{ $errors->first('sex') }} @endif @endif @if (sc_config('customer_birthday')) Wedding Date @if($errors->has('birthday')) {{ $errors->first('birthday') }} @endif @endif {{ trans('account.update_infomation') }} @endsection {{-- breadcrumb --}} @section('breadcrumb') @endsection {{-- //breadcrumb --}}