@extends('admin.layouts.layout') @section('content')

{{ trans('admin_lang.add') }} Vehicle Model

{{ Form::open(['route' => [routeFormUser($pagePath . '.store')], 'files' => true, 'class' => 'upload_submit']) }}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Enter Title', 'required']) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::select('vehicle_make_id', $category, null, [ 'class' => 'form-control', ]) !!} @if ($errors->has('vehicle_make_id'))
{{ $errors->first('vehicle_make_id') }} @endif
{{ Form::close() }}
@endsection