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

Edit Charger

@if(Session::has('message'))

{{ Session::get('message') }}

@endif
@csrf
@if ($errors->has('company')){{ $errors->first('company') }}@endif
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('type')){{ $errors->first('type') }}@endif
@if ($errors->has('power')){{ $errors->first('power') }}@endif
@if ($errors->has('qty')){{ $errors->first('qty') }}@endif
@if ($errors->has('warranty')){{ $errors->first('warranty') }}@endif
@if ($errors->has('image')){{ $errors->first('image') }}@endif
@if ($errors->has('purchase_price')){{ $errors->first('purchase_price') }}@endif
@if ($errors->has('dealer_price')){{ $errors->first('dealer_price') }}@endif
@if ($errors->has('subdealer_price')){{ $errors->first('subdealer_price') }}@endif
@if ($errors->has('customer_price')){{ $errors->first('customer_price') }}@endif
@endsection