@extends('backEnd.layouts.master') @section('title','Product Edit') @section('css') @endsection @section('content')

Edit Product: {{ $edit_data->name }}

Manage Products
@csrf
{{-- Left Side --}}
General Information
{{-- Images Section --}}
Product Images
@foreach ($edit_data->images as $image)
@endforeach
{{-- Right Side --}}
Pricing & Inventory
Product Variants
@foreach($totalsizes as $size)
id, $selectsizes->pluck('size_id')->toArray()) ? 'checked' : '' }}>
@endforeach
Status & Visibility
status == 1 ? 'checked' : '' }} id="statusSwitch" style="width: 40px; height: 20px;">
topsale == 1 ? 'checked' : '' }} id="hotDealSwitch" style="width: 40px; height: 20px;"> {{-- --}}
demand == 1 ? 'checked' : '' }}> {{-- --}}
tavaas == 1 ? 'checked' : '' }}> {{-- --}}
{{-- Hidden Clone Template --}}
@endsection @section('script') @endsection