@extends('layouts.app') @section('title', 'Battery Verification - Pamtech') @section('content') @include('partials.nav', ['variant' => 'verify'])
{{-- Status Header --}}
@if($isValid)
Verification Result

Authentic Pamtech Battery

GENUINE ISO CERTIFIED
@elseif($isUsed)
Verification Result

Previously Verified

ALREADY SCANNED

This serial has been verified before. The battery remains authentic and warrantied.

@else
Verification Result

Invalid Serial Code

NOT AUTHENTIC

This serial code is not registered in the Pamtech verification database.

@endif
@if($battery)

Unit Specifications

Battery Data
Serial Code {{ $battery->serial_code }}
Model {{ $battery->type }}
Voltage {{ $battery->volts }}
Capacity {{ $battery->amhs }}
CCA {{ $battery->cca }}
Class {{ $battery->class }}
Scan Count {{ $battery->scan_count }}
Status {{ strtoupper($battery->status) }}
@else

Unit Not Found

Serial: {{ $serial ?? 'N/A' }}

Not registered in verification database.

Possible causes:

• Serial code entered incorrectly

• Unit may not be a genuine Pamtech product

• Contact support for manual verification

@endif @if($isValid || $isUsed)

Thank you for choosing Pamtech

Your battery is authentic and covered by our comprehensive warranty. Drive with confidence.

@endif
Verify Another Unit @if($battery && ($isValid || $isUsed)) @endif
@if($battery && ($isValid || $isUsed)) @endif @push('scripts') @endpush @endsection