@extends('layouts.app') @section('title',($vendorList->exists ? 'Edit' : 'Create').' Vendor List | BASCORE') @section('content') @php $route = $vendorList->exists ? route('vendor-lists.update',$vendorList) : route('vendor-lists.store'); $rows = old('items', $lines); @endphp

{{ $vendorList->exists ? 'Edit' : 'Create' }} Vendor List

Prepare a client-ready approved vendor/brand list for project submissions.
@csrf @if($vendorList->exists) @method('put') @endif

Vendor / Brand Items

@foreach($rows as $i => $line) @endforeach
SystemPreferred BrandAlternative
Cancel
@endsection