@extends('admin.layout.layout') @section('content')

Add Images

@if(Session::has('error_message')) @endif @if(Session::has('success_message')) @endif @if($errors->any()) @endif
@csrf
  {{ $product['product_name'] }}
  {{ $product['product_code'] }}
  {{ $product['product_color'] }}
  {{ $product['product_price'] }}
@if(!empty($product['product_image'])) @else @endif


Product Images

@foreach($product['images'] as $image) @endforeach
ID Image Actions
{{ $image['id'] }} @if($image['status']==1) @else @endif  
@include('admin.layout.footer')
@endsection