@extends('backend.dashboard.layout.master') @section('content')
@if ($errors->any())
@endif

@if (isset($method) && $method == 'PUT') {{ translate('Edit Product') }} @else {{ translate('Create Product') }} @endif

@csrf @if (isset($method) && $method == 'PUT') @method('PUT') @else @method('POST') @endif

Thumbnail

{{ translate('Category') }}

{{ translate('Select product category.') }}

{{ translate('Status') }}

@if (isset($method) && $method == 'PUT')
@else
@endif
{{ translate('Set the status of the product') }}.

{{ translate('Product message') }}

@foreach ($language as $index => $lang)

{{ translate('Product details') }} ({{ $lang->name }})

name}", $productTranslate[$lang->name]->name ?? '') }}" class="form-control mb-2 product-name-input" placeholder="Enter product name" data-lang="{{ $lang->name }}" />
Enter the product slug or barcode.
0/500
@endforeach

{{ translate('Pricing') }}

{{ translate('Set at least one pricing method') }}.
Set the discounted product price. The product will be reduced at the determined fixed price

Create

{{ translate('Back') }}
@endsection