@extends('layouts.template') @section('template')

ITEM Item List

Add New
{{ csrf_field() }}
@if($errors->has('item_name')) {{ $errors->first('item_name')}} @endif
@foreach($brands as $brand)
@if($errors->has('item_image')) {{ $errors->first('item_image')}} @endif
@foreach($colors as $color)
@if($errors->has('description')) {{ $errors->first('description')}} @endif
@if($errors->has('unit')) {{ $errors->first('unit')}} @endif
@if($errors->has('costing_rate')) {{ $errors->first('costing_rate')}} @endif
@if($errors->has('mrp')) {{ $errors->first('mrp')}} @endif

@if(Session::has('success'))
{{Session::get('success')}} @php Session::forget('success'); @endphp
@endif @if(Session::has('delete'))
{{Session::get('delete')}} @php Session::forget('delete'); @endphp
@endif
@endsection