@extends('admin.layout.master') @section('title', 'كروت الشحن') @section('content')

كروت الشحن

تعديل البيانات

@csrf @method('PATCH')
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('client_price')) {{ $errors->first('client_price') }} @endif
@if ($errors->has('merchant_price')) {{ $errors->first('merchant_price') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('product_images')) {{ $errors->first('product_images') }} @endif
التصنيف
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
الوسوم
@if ($errors->has('tags')) {{ $errors->first('tags') }} @endif
@if ($errors->has('all_cards')) {{ $errors->first('all_cards') }} @endif
عرض
@if ($errors->has('sale')) {{ $errors->first('sale') }} @endif
{{-- @include('admin.layout.message')--}}

صور المنتج

@foreach($row->images as $image) @endforeach
# الصورة التحكم
{{$i}}
{{-- @include('admin.layout.message')--}}

الكروت

@foreach($product_cards as $product_card) @endforeach
# الكود الحالة التحكم
{{$i}} {{$product_card->card_code}} {{$product_card->available == 'true' ? 'متاح للبيع' : 'غير متاح'}}
@stop