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

Edit Vehicle

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

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

@endif
@csrf
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('hsn')){{ $errors->first('hsn') }}@endif
@if ($errors->has('warranty')){{ $errors->first('warranty') }}@endif
@if ($errors->has('color')){{ $errors->first('color') }}@endif
@if ($errors->has('image')){{ $errors->first('image') }}@endif
@if ($errors->has('gst')){{ $errors->first('gst') }}@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