@extends('admin.layouts.app') @section('title', 'Edit '. ($product->product_name ?? '') .' Product') @section('section')

Product Form

@method('put') @csrf
{!! $errors->first('product_name', '

:message

') !!}
{!! $errors->first('category_id') !!}

@include('admin.product.cost-calculator')
is_customizable ? 'checked' : '' }}>
is_fixed_quantity ? 'checked' : '' }}>
@include('admin.product.quantity-discount')
@include('admin.product.edit-option')
{!! $errors->first('category_id') !!}
@include('admin.product.discount-input')

{!! $errors->first('description', '

:message

') !!}

{!! $errors->first('additional_information', '

:message

') !!}

{!! $errors->first('meta-title', '

:message

') !!}
{!! $errors->first('meta-description', '

:message

') !!}
{!! $errors->first('meta-keywords', '

:message

') !!}

@include('admin.product.catalog-images')
@include('admin.product.gallery')
@endsection @section('script') @endsection