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

WEB System

@foreach($list as $i => $content)
@foreach($content['menu'] as $j => $menu)
{{-- AISIN Part Number --}} @if($i == 0 && $j == 0)
{!! Form::text('id', '', [ 'class' => 'form-control', 'id' => 'input1', 'placeholder' => '', ]) !!}
@endif {{-- AISIN Part Code --}} @if($i == 0 && $j == 1)
{!! Form::text('id', '', [ 'class' => 'form-control', 'id' => 'input1', 'placeholder' => '', ]) !!}
@endif {{-- OE Number --}} @if($i == 0 && $j == 2)
{!! Form::select('id', $car_maker, '', [ 'class' => 'form-select', 'id' => 'input1', 'placeholder' => 'select car maker', ]) !!}
{!! Form::text('id', '', [ 'class' => 'form-control', 'id' => 'input2', 'placeholder' => '', ]) !!}
@endif {{-- VIN Number --}} @if($i == 1 && $j == 0)
{!! Form::text('id', '', [ 'class' => 'form-control', 'id' => 'input1', 'placeholder' => '', ]) !!}
@endif {{-- by vehicle application --}} @if($i == 1 && $j == 1)
@foreach($car_maker as $key => $value) @endforeach
@endif
@endforeach
@endforeach
@endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop