@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.product.title_singular') }}
@method('POST') @csrf
@if($errors->has('product_name'))
{{ $errors->first('product_name') }}
@endif {{ trans('cruds.product.fields.product_name_helper') }}
@if($errors->has('product_type'))
{{ $errors->first('product_type') }}
@endif {{ trans('cruds.product.fields.product_type_helper') }}
@if($errors->has('product_code'))
{{ $errors->first('product_code') }}
@endif {{ trans('cruds.product.fields.product_code_helper') }}
@if($errors->has('vpc'))
{{ $errors->first('vpc') }}
@endif {{ trans('cruds.product.fields.vpc_helper') }}
@if($errors->has('hsn_code'))
{{ $errors->first('hsn_code') }}
@endif {{ trans('cruds.product.fields.hsn_code_helper') }}
@if($errors->has('category'))
{{ $errors->first('category') }}
@endif {{ trans('cruds.product.fields.category_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.product.fields.description_helper') }}
@if($errors->has('opening_balance'))
{{ $errors->first('opening_balance') }}
@endif {{ trans('cruds.product.fields.opening_balance_helper') }}
@if($errors->has('type_2'))
{{ $errors->first('type_2') }}
@endif {{ trans('cruds.product.fields.type_2_helper') }}
@if($errors->has('minimum_order'))
{{ $errors->first('minimum_order') }}
@endif {{ trans('cruds.product.fields.minimum_order_helper') }}
@if($errors->has('maximum_order'))
{{ $errors->first('maximum_order') }}
@endif {{ trans('cruds.product.fields.maximum_order_helper') }}
@endsection @section('scripts') @endsection