@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.productStore.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('store'))
{{ $errors->first('store') }}
@endif {{ trans('cruds.productStore.fields.store_helper') }}
@if($errors->has('product'))
{{ $errors->first('product') }}
@endif {{ trans('cruds.productStore.fields.product_helper') }}
@if($errors->has('cost_price'))
{{ $errors->first('cost_price') }}
@endif {{ trans('cruds.productStore.fields.cost_price_helper') }}
@if($errors->has('sell_price'))
{{ $errors->first('sell_price') }}
@endif {{ trans('cruds.productStore.fields.sell_price_helper') }}
@if($errors->has('alert_quantity'))
{{ $errors->first('alert_quantity') }}
@endif {{ trans('cruds.productStore.fields.alert_quantity_helper') }}
@if($errors->has('sup'))
{{ $errors->first('sup') }}
@endif {{ trans('cruds.productStore.fields.sup_helper') }}
@if($errors->has('box'))
{{ $errors->first('box') }}
@endif {{ trans('cruds.productStore.fields.box_helper') }}
@if($errors->has('taxrate'))
{{ $errors->first('taxrate') }}
@endif {{ trans('cruds.productStore.fields.taxrate_helper') }}
@if($errors->has('tax_method'))
{{ $errors->first('tax_method') }}
@endif {{ trans('cruds.productStore.fields.tax_method_helper') }}
@if($errors->has('quantity_in_stock'))
{{ $errors->first('quantity_in_stock') }}
@endif {{ trans('cruds.productStore.fields.quantity_in_stock_helper') }}
@if($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif {{ trans('cruds.productStore.fields.start_date_helper') }}
@if($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif {{ trans('cruds.productStore.fields.end_date_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.productStore.fields.status_helper') }}
@if($errors->has('sort_order'))
{{ $errors->first('sort_order') }}
@endif {{ trans('cruds.productStore.fields.sort_order_helper') }}
@endsection