@extends('layouts.frontend.main') {{-- content --}} @section('content')

Toyota / Aqua

Model Year
########
Engine Code
########
Displacement
########
Transmisstion type
########

Select by product

@foreach($list as $i => $content)
{{-- by part category --}} @if($i == 0)
{!! Form::select('id', $product_system, '', [ 'class' => 'form-select', 'placeholder' => 'Select Product System', ]) !!}
{!! Form::select('id', $product_group, '', [ 'class' => 'form-select', 'placeholder' => 'Select Product Group', ]) !!}
@endif {{-- by part name --}} @if($i == 1)
{!! Form::select('id', $product_all_name, '', [ 'class' => 'form-select', 'placeholder' => 'Select Product Name', ]) !!}
@endif {{-- by AISIN part cord --}} @if($i == 2)
{!! Form::text('id', '', [ 'class' => 'form-control', 'id' => 'input1', 'placeholder' => '', ]) !!}
@endif
@endforeach
Back
@endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop