{{ trans('texts.name') }}
@if ($multiUser)
{{ trans('texts.user') }}
@endif
{{ trans('texts.address1') }}
{{ trans('texts.address2') }}
{{ trans('texts.city') }}
{{ trans('texts.state') }}
{{ trans('texts.postal_code') }}
{{ trans('texts.country') }}
@foreach ($vendors as $vendor)
{{ $vendor->getDisplayName() }}
@if ($multiUser)
{{ $vendor->user->getDisplayName() }}
@endif
{{ $vendor->address1 }}
{{ $vendor->address2 }}
{{ $vendor->city }}
{{ $vendor->state }}
{{ $vendor->postal_code }}
{{ $vendor->present()->country }}
@endforeach