@extends('Admin.Views.edit')
@include('vineyard::sidebar')
@section('editform')
@php
if (! isset($data)) { $old = old(); if (! empty($old)) { $data = $old; } else { $data = []; } }
$products_wine=[];
if(isset($data["wine"])) { foreach($data["wine"] as $wines) { $products_wine[]=$wines["id"]; } }
@endphp
@isset($data['id'])