@extends('shop.layout') @section('title', 'Căutare după VIN') @section('content')

Caută piese după VIN

Introdu codul VIN (17 caractere) ca să identificăm mașina. Apoi caută piesele în catalog.

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

{{ $decoded['reason'] ?? 'VIN invalid — trebuie 17 caractere.' }}

@else

Mașină identificată

Producător{{ $decoded['manufacturer'] ?? '—' }}
An model{{ $decoded['year'] ?? '—' }}
Țară{{ $decoded['country'] ?? '—' }}
Regiune{{ $decoded['region'] ?? '—' }}
Caută piese pentru {{ $decoded['manufacturer'] ?? 'această mașină' }} →

Pentru compatibilitate exactă pe model/motorizare, contactează service-ul cu acest VIN.

@endif
@endif @endsection