{{ __('Country') }} *
@php
$bcountry = '';
if (empty(old())) {
if (Auth::check()) {
$bcountry = Auth::user()->billing_country;
}
} else {
$bcountry = old('billing_country');
}
@endphp
@error('billing_country')
{{ convertUtf8($message) }}
@enderror
{{ __('First Name') }} *
@php
$bfname = '';
if (empty(old())) {
if (Auth::check()) {
$bfname = Auth::user()->billing_fname;
}
} else {
$bfname = old('billing_fname');
}
@endphp
@error('billing_fname')
{{ convertUtf8($message) }}
@enderror
{{ __('Last Name') }} *
@php
$blname = '';
if (empty(old())) {
if (Auth::check()) {
$blname = Auth::user()->billing_lname;
}
} else {
$blname = old('billing_lname');
}
@endphp
@error('billing_lname')
{{ convertUtf8($message) }}
@enderror
{{ __('Address') }} *
@php
$baddress = '';
if (empty(old())) {
if (Auth::check()) {
$baddress = Auth::user()->billing_address;
}
} else {
$baddress = old('billing_address');
}
@endphp
@error('billing_address')
{{ convertUtf8($message) }}
@enderror
{{ __('Town / City') }} *
@php
$bcity = '';
if (empty(old())) {
if (Auth::check()) {
$bcity = Auth::user()->billing_city;
}
} else {
$bcity = old('billing_city');
}
@endphp
@error('billing_city')
{{ convertUtf8($message) }}
@enderror
{{ __('Contact Email') }} *
@php
$bmail = '';
if (empty(old())) {
if (Auth::check()) {
$bmail = Auth::user()->billing_email;
}
} else {
$bmail = old('billing_email');
}
@endphp
@error('billing_email')
{{ convertUtf8($message) }}
@enderror
{{ __('Phone') }} *
@php
$bnumber = '';
if (empty(old())) {
if (Auth::check()) {
$bnumber = Auth::user()->billing_number;
}
} else {
$bnumber = old('billing_number');
}
@endphp
@error('billing_number')
{{ convertUtf8($message) }}
@enderror