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

Add Item To Cart For Online Sell

@csrf
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('slug')){{ $errors->first('slug') }}@endif
@if ($errors->has('range')){{ $errors->first('range') }}@endif
@if ($errors->has('speed')){{ $errors->first('speed') }}@endif
@if ($errors->has('power')){{ $errors->first('power') }}@endif
@if ($errors->has('price')){{ $errors->first('price') }}@endif
@if ($errors->has('offerprice')){{ $errors->first('offerprice') }}@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