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

Create

@csrf

General Details

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

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

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

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

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

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

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

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

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

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

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

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

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