@extends('layouts/contentLayoutMaster') @section('title', 'أضافة منتج جديد ') @section('vendor-style') @endsection @section('content') أضافة منتج @csrf اسم المنتج بالعربي * @if ($errors->has('name')) {{ $errors->first('name') }} @endif اسم المنتج بالأنجليزي * @if ($errors->has('name_en')) {{ $errors->first('name_en') }} @endif شرح تفاصيل المنتج بالعربي * {{old('desc_ar')}} @if ($errors->has('desc_ar')) {{ $errors->first('desc_ar') }} @endif شرح تفاصيل المنتج بالانجليزي * {{old('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 مفعل @if ($errors->has('status')) {{ $errors->first('status') }} @endif المخازن @foreach ($zones as $zone) {{$zone->name}} * @if ($errors->has('stock_{{$zone->id}}')) {{ $errors->first('stock_') }} @endif @endforeach اضافة {{-- Data list view end --}} @endsection @section('vendor-script') @endsection