@extends('layouts.admin-layout') @section('title') Edit Product @endsection @section('content')

Edit Product

@csrf
@error('product_name') {{ $message }} @enderror
@error('category_name') {{ $message }} @enderror
@error('product_price') {{ $message }} @enderror
@error('stock') {{ $message }} @enderror
product_status === 'Active' ? 'checked' : ''}} value="Active" style="width: 30px;"> product_status === 'Future' ? 'checked' : ''}} value="Future"style="width: 30px;">
@error('product_image') {{ $message }} @enderror
Profile Preview
Image Gallery
@if(count($product_gallery_images) > 0) @foreach ($product_gallery_images as $index => $image)
@endforeach @else
@endif
@error('description') {{ $message }} @enderror
status === 1 ? 'checked': ''}}>
@endsection @section('script') @endsection