@extends('layouts.admin') @section('content') @push('css') {{-- dropzone --}} @endpush
@csrf
@if ($errors->has('product_name')) {{ $errors->first('product_name') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('product_code')) {{ $errors->first('product_code') }} @endif
@if ($errors->has('product_price')) {{ $errors->first('product_price') }} @endif
@if ($errors->has('product_unit')) {{ $errors->first('product_unit') }} @endif
@if ($errors->has('product_category')) {{ $errors->first('product_category') }} @endif
@if ($errors->has('minimum_stock')) {{ $errors->first('minimum_stock') }} @endif
@if ($errors->has('reorder_quantity')) {{ $errors->first('reorder_quantity') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@push('alljs') @endpush @endsection