@extends('admin.layout.admin') @section("title"," Dashboard | Wishours") @section("content")

Products Manage Products


Add Product Attributes

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session()->has('message'))
{{ session('message') }}
@endif

Product Title : {{ $product->title }}

Product Code : {{ $product->product_code }}

Product Gallery

{{ csrf_field() }}
Select Multiple Image for product gallery
@php $counter = 1; @endphp @foreach($product->productsliders as $productslider) @endforeach
# Product Image Actions
{{ csrf_field() }} {{ method_field('DELETE') }}
<< Back
@endsection