@extends('backend.layouts.master') @section('section-title', 'Used Product') @section('page-title', 'Add Product') @if (check_permission('product.update')) @section('action-button') All Product @endsection @endif @section('content')
@csrf {{-- Product name --}}
{{ $errors->has('name') ? $errors->first('name') : '' }}
{{-- Product barcode --}}
{{ $errors->has('barcode') ? $errors->first('barcode') : '' }}
{{-- Category --}}
{{ $errors->has('category_id') ? $errors->first('category_id') : '' }}
{{-- Brand --}}
{{-- Unit --}}
{{-- Unit --}}
{{-- Unit --}} {{--
--}} {{-- Price --}}
{{ $errors->has('purchase_price') ? $errors->first('purchase_price') : '' }}
{{--
{{ $errors->has('selling_price') ? $errors->first('selling_price') : '' }}
--}}
{{ $errors->has('status') ? $errors->first('status') : '' }}
{{-- Image --}} {{--
--}}
{{-- Add Category Modal --}}
@csrf
{{-- Add Brand Modal --}}
@csrf
@endsection @push('js') @endpush