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

Create Vehicle Brand

{!! Form::open(['route'=>array('vehicle-brand.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{{$errors->first('vehicle_brand')}}
{!! Form::select("status", [''=>'Select Staus']+['active'=> 'Active', 'inactive'=>'Inactive'], old("status"), ['class'=>'form-control' ,'id' => 'product_id1','required'=>'required'] ) !!}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush