@extends('shop.layout') @section('title', __('portal.shop.vin_title')) @section('content')

{{ __('portal.shop.vin_title') }}

{{ __('portal.shop.vin_intro') }}

@if ($decoded)
@if (! ($decoded['valid_length'] ?? false))

{{ $decoded['reason'] ?? __('portal.shop.vin_invalid') }}

@else

{{ __('portal.shop.vin_identified') }}

{{ __('portal.shop.vin_manufacturer') }}{{ $decoded['manufacturer'] ?? '—' }}
{{ __('portal.shop.vin_year') }}{{ $decoded['year'] ?? '—' }}
{{ __('portal.shop.vin_country') }}{{ $decoded['country'] ?? '—' }}
{{ __('portal.shop.vin_region') }}{{ $decoded['region'] ?? '—' }}
{{ __('portal.shop.vin_search_parts', ['maker' => $decoded['manufacturer'] ?? __('portal.shop.this_car')]) }}

{{ __('portal.shop.vin_contact_note') }}

@endif
@endif @endsection