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

Create Vehicle Model

{!! Form::open(['route'=>array('vehicle-model.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{!! Form::select("v_brand_id", [''=>'Select Brand']+$vehicleBrand, old("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