@csrf

General

@if ($errors->has('firstName')) * {{ $errors->first('firstName') }} @endif
@if ($errors->has('lastName1')) * {{ $errors->first('lastName1') }} @endif
@if ($errors->has('email')) * {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) * {{ $errors->first('phone') }} @endif
@if ($errors->has('whatsapp')) * {{ $errors->first('whatsapp') }} @endif

Company

@if ($errors->has('companyName')) * {{ $errors->first('companyName') }} @endif
@if ($errors->has('companyWebsite')) * {{ $errors->first('companyWebsite') }} @endif

Billing Address

@if(empty($userProfile->direccion_fiscal))
@if ($errors->has('billingAddress')) * {{ $errors->first('billingAddress') }} @endif
@if ($errors->has('billingAddressLine2')) * {{ $errors->first('billingAddressLine2') }} @endif
@if ($errors->has('city')) * {{ $errors->first('city') }} @endif
@if ($errors->has('stateProvince')) * {{ $errors->first('stateProvince') }} @endif
@if ($errors->has('zipCode')) * {{ $errors->first('zipCode') }} @endif
@endif

Additional Information

@if ($errors->has('findUs')) * {{ $errors->first('findUs') }} @endif
@if ($errors->has('totalAnualSales')) * {{ $errors->first('totalAnualSales') }} @endif
@if ($errors->has('companyType')) * {{ $errors->first('companyType') }} @endif
@if ($errors->has('otherCompanyType')) * {{ $errors->first('otherCompanyType') }} @endif