@extends('items.layout') @section('items.content')
@csrf
@if($errors->has('sku'))
{{$errors->first('sku')}}
@endif
@if($errors->has('name'))
{{$errors->first('name')}}
@endif
@if($errors->has('type'))
{{$errors->first('type')}}
@endif
@if($errors->has('cost_price'))
{{$errors->first('cost_price')}}
@endif
@if($errors->has('selling_price'))
{{$errors->first('selling_price')}}
@endif
@if($errors->has('stock'))
{{$errors->first('stock')}}
@endif
@endsection