@extends('layouts/contentLayoutMaster') @section('title', 'تعديل منتج ') @section('vendor-style') @endsection @section('content') تعديل منتج @csrf @method('put') اسم المنتج بالعربي * @if ($errors->has('name')) {{ $errors->first('name') }} @endif اسم المنتج بالأنجليزي * @if ($errors->has('name_en')) {{ $errors->first('name_en') }} @endif شرح تفاصيل المنتج بالعربي * {{old('desc_ar',$data->desc_ar)}} @if ($errors->has('desc_ar')) {{ $errors->first('desc_ar') }} @endif شرح تفاصيل المنتج بالانجليزي * {{old('desc_en',$data->desc_en)}} @if ($errors->has('desc_en')) {{ $errors->first('desc_en') }} @endif سعر المنتج * @if ($errors->has('price')) {{ $errors->first('price') }} @endif الصورة @if ($errors->has('img')) {{ $errors->first('img') }} @endif مفعل status == 1 ) checked @endif @endif value="1" > @if ($errors->has('status')) {{ $errors->first('status') }} @endif المخازن @foreach ($zones as $zone) {{$zone->name}} * stocks as $_stock) @if($_stock->zone_id == $zone->id) value="{{old('price_'.$zone->id,$_stock->stock)}}" @endif @endforeach required> @if ($errors->has('stock_{{$zone->id}}')) {{ $errors->first('stock_') }} @endif @endforeach تعديل {{-- Data list view end --}} @endsection @section('vendor-script') @endsection