@lang("vehicle.vehicle_details")

@include('livewire.common._vehicleview')
@if($sellers)

@lang("customer.seller_details")

@include('livewire.common._customerlistview', ["customers" => $sellers, "reference" => App\Config\AppConstants::SELLER])
@endif @if($sellerThirdPartys)

@lang("customer.seller_third_party")

@include('livewire.common._customerlistview', ["customers" => $sellerThirdPartys, "reference" => App\Config\AppConstants::SELLER_THIRD_PARTY])
@endif @if($buyers)

@lang("customer.buyer_details")

@include('livewire.common._customerlistview', ["customers" => $buyers, "reference" => App\Config\AppConstants::BUYER])
@endif @if($buyerThirdPartys)

@lang("customer.buyer_third_party")

@include('livewire.common._customerlistview', ["customers" => $buyerThirdPartys, "reference" => App\Config\AppConstants::BUYER_THIRD_PARTY])
@endif @if($guarantors)

@lang("mof.guarantors")

@include('livewire.common._customerlistview', ["customers" => $guarantors, "reference" => App\Config\AppConstants::GUARANTOR])
@endif

@lang("transactions.sale_details")

@include('livewire.transaction.vehicle._saleview')