@extends('backend.layout.master') @section('content') Edit Product Dashboard Edit Product @if (count($errors) > 0) Whoops! There were some problems with your input. @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif Add Variations @csrf @method('PUT') Select Products @foreach($products as $key => $pd) @if($product->accessories) @php $selected = explode(",",$product->accessories->accessories); @endphp id, $selected)) selected @endif>{{$pd->name}} @else {{$pd->name}} @endif @endforeach @endsection @push('specific_css') @endpush @push('specific_js') @endpush