@extends('layouts.vendor') @section('title', 'Add New Product') @section('page-title', 'Add New Product') @section('content')
@csrf
{{-- Basic Info --}}

Basic Information

@error('name')

{{ $message }}

@enderror
{{-- Images --}}

Product Images

{{-- Car Compatibility --}}

Vehicle Compatibility

Select which vehicles this part is compatible with.

@foreach($carMakes as $make)

{{ $make->name }}

@foreach($make->models as $model)

{{ $model->name }}

@foreach($model->years as $year) @endforeach
@endforeach
@endforeach
Cancel
@endsection