@extends('adminlayout.dashadmin') @section('content')
<< Back


Add Item To Cart For Online Sell

@csrf
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('price')){{ $errors->first('price') }}@endif
@if ($errors->has('tax')){{ $errors->first('tax') }}@endif
@if ($errors->has('status')){{ $errors->first('status') }}@endif
@if ($errors->has('description')){{ $errors->first('description') }}@endif

Manage Gallery Images

@foreach ($images as $index => $image)
@csrf @method('PUT')
@csrf @method('DELETE')
@endforeach
@csrf
@endsection