@extends('business.partials.layout') @section('css') @endsection @section('content')

Create

@csrf

General Details

@if($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if($errors->has('sku'))

{{ $errors->first('sku') }}

@endif
@if($errors->has('category_id'))

{{$errors->first('category_id') }}

@endif
@if($errors->has('unit_id'))

{{$errors->first('unit_id')}}

@endif
@if($errors->has('price'))

{{ $errors->first('price') }}

@endif
@if($errors->has('purchase_price'))

{{ $errors->first('purchase_price') }}

@endif
@if($errors->has('status'))

{{$errors->first('status')}}

@endif
@if($errors->has('short_description'))

{{ $errors->first('short_description') }}

@endif

Details

@if($errors->has('long_description'))

{{ $errors->first('long_description') }}

@endif

Image

@if($errors->has('thumbnail'))

{{$errors->first('thumbnail') }}

@endif
@endsection @section('js') @endsection