@extends('layouts.master') @section('title', 'Product Add/Edit') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.sidebar') @include('layouts.header-sub')
@yield('title')

@php $isEdit = !empty($product->product_id); @endphp
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- 1. Image --}}
@if (!empty($product->product_image)) @endif
{{-- 2. Product Code --}}
{{-- 3. Product Name --}}
{{-- 5. Unit --}}
{{-- 6. Weight --}}
grams {{-- --}}
{{-- 7–8 Min / Max --}}
{{-- Product Type --}}
{{-- Status --}}
{{-- Description --}}
Back
@include('layouts.footer') @endsection