@extends('admin.layout.app') @section('title','Edit Vehicle Model ') @section('content')

Edit Vehicle Model

{!! Form::open(['route'=>array('vehicle-model.update', $vehicleModel->id), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'put']) !!}
{!! Form::select("v_brand_id", [''=>'Select Brand']+$vehicleBrand, old("v_brand_id", $vehicleModel->v_brand_id), ['class'=>'form-control' ,'id' => 'product_id1','required'=>'required'] ) !!}
{{$errors->first('vehicle_model')}}
{{--
{{$errors->first('vehicle_year')}}
{{$errors->first('vehicle_type')}}
{{$errors->first('cylinder')}}
--}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush