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

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

@php $formMode = 'edit'; $formAction = route('combos.update', $combo->id); $formMethod = 'PUT'; $redirectUrl = null; $formIdPrefix = 'combo_form'; $formPrefixes = [$formIdPrefix]; $selectedCategoryByPrefix = [$formIdPrefix => old('category_id', $combo->category_id ?? null)]; $selectedBrandByPrefix = [$formIdPrefix => old('brand', $combo->brand_id ?? null)]; @endphp @include('combos.partials.form')
@endsection @section('scripts') @php $formPrefixes = [$formIdPrefix]; $selectedCategoryByPrefix = [$formIdPrefix => old('category_id', $combo->category_id ?? null)]; $selectedBrandByPrefix = [$formIdPrefix => old('brand', $combo->brand_id ?? null)]; @endphp @include('combos.partials.scripts') @endsection