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

Add Attributes

@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
Add


Product Attributes

@csrf @foreach($product['attributes'] as $attribute) @endforeach
ID Size SKU Price Stock Actions
{{ $attribute['id'] }} {{ $attribute['size'] }} {{ $attribute['sku'] }} @if($attribute['status']==1) @else @endif
@include('admin.layout.footer')
@endsection