@extends("layouts.dashboard.app") @section("page-nav-title")
{{__('Items')}}
{{__('Create New Item')}}
{{__('Items')}}
{{__('Create')}}
@endsection @section("content")
{{__('Create New Item')}}
@csrf
{{__('English Item Name')}}
@error("item_name_en")
{{$message}}
@enderror
{{__('Arabic Item Name')}}
@error("item_name_ar")
{{$message}}
@enderror
{{__('Category')}}
{{__('None')}}
@foreach($categories as $category)
id)}}>{{$category->category_name_en}} ( {{$category->category_name_ar}} )
@endforeach
@error("category_id")
{{$message}}
@enderror
{{__('Sub-Category')}}
{{__('None')}}
@foreach($subcategories as $subcategory)
id)}}>{{$subcategory->category_name_en}} ( {{$subcategory->category_name_ar}} )
@endforeach
@error("subcategory_id")
{{$message}}
@enderror
{{__('Brand')}}
{{__('None')}}
@foreach($brands as $brand)
{{$brand->brand_name_en}} ( {{$brand->brand_name_ar}} )
@endforeach
@error("subcategory_id")
{{$message}}
@enderror
{{__('Item Price')}}
@error("item_price")
{{$message}}
@enderror
{{__('Discount Price')}}
@error("Discount_price")
{{$message}}
@enderror
{{__('English Item Description')}}
{{inputValue("item_description_en")}}
@error("item_description_en")
{{$message}}
@enderror
{{__('Arabic Item Description')}}
{{inputValue("item_description_ar")}}
@error("item_description_ar")
{{$message}}
@enderror
{{__('New Arrival')}}
{{__('Item Status')}}
{{__('Main Photo')}}
{{__("Upload Photo")}}
@error("item_image")
{{$message}}
@enderror
{{__("Multi Image")}}
{{__("Upload ")}}
{{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
@endsection @section("scripts") @endsection