@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)
										
											
												
                                                    List of products with the same Product name (=AISIN Part code)
                                                    Narrow down the list of products by Applicable vehicles
                                                
											 
										 
									@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