{!! 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
@section('script') @endsection