@extends('layouts.main') @section('title', 'Edit Product') @section('content')
@csrf @method('PATCH')
@foreach ($attributes as $item)
@if($item->type == 'dropdown') @else @foreach ($AttributeValue as $itemvalue) @if ($itemvalue->prodcut_attribute_id == $item->id) @endif @endforeach
@endif
@endforeach
@endsection