@extends('layouts.app') @section('content')

{{ trans('lang.products') }}

@php $formMode = 'edit'; $formAction = route('products.update', $product->id); $formMethod = 'PUT'; $redirectUrl = null; $formIdPrefix = 'product_form'; $formPrefixes = [$formIdPrefix]; $productAttributesByPrefix = [$formIdPrefix => $productAttributes]; $selectedCategoryByPrefix = [$formIdPrefix => old('parent_id', $product->category_id ?? null)]; $selectedBrandByPrefix = [$formIdPrefix => old('brand', $product->brand_id ?? null)]; $nutritionIndex = $product->productNutrition ? count($product->productNutrition) : 0; $nutritionIndexByPrefix = [$formIdPrefix => $nutritionIndex]; $editProductId = $product->id ?? ''; @endphp @include('products.partials.form')
@endsection @section('scripts') @php $formPrefixes = [$formIdPrefix]; $productAttributesByPrefix = [$formIdPrefix => $productAttributes]; $selectedCategoryByPrefix = [$formIdPrefix => old('parent_id', $product->category_id ?? null)]; $selectedBrandByPrefix = [$formIdPrefix => old('brand', $product->brand_id ?? null)]; $nutritionIndexByPrefix = [$formIdPrefix => $nutritionIndex]; $editProductId = $product->id ?? ''; @endphp @include('products.partials.scripts') @endsection