@extends('layouts.core.frontend', [ 'menu' => '', ]) @section('title', trans('messages.balance.your_balance')) @section('page_header')

payments {{ trans('messages.address') }}

@endsection @section('content') @include('checkout._steps', [ 'step' => 'address', ])
{{ csrf_field() }}

contact_mail

{{ trans('messages.billing_address') }}

@if (get_localization_config('show_last_name_first', Auth()->user()->customer->getLanguageCode()))
@if ($errors->has('billing_last_name'))
{{ $errors->first('billing_last_name') }}
@endif
@if ($errors->has('billing_first_name'))
{{ $errors->first('billing_first_name') }}
@endif
@else
@if ($errors->has('billing_first_name'))
{{ $errors->first('billing_first_name') }}
@endif
@if ($errors->has('billing_last_name'))
{{ $errors->first('billing_last_name') }}
@endif
@endif
@if ($errors->has('billing_email'))
{{ $errors->first('billing_email') }}
@endif
@if ($errors->has('billing_phone'))
{{ $errors->first('billing_phone') }}
@endif
@if ($errors->has('billing_address'))
{{ $errors->first('billing_address') }}
@endif
@if (config('custom.japan')) @else
@if ($errors->has('billing_country_id'))
{{ $errors->first('billing_country_id') }}
@endif
@endif
@endsection