{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Enter Title', 'required']) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::textarea('info', null, ['class' => 'form-control', 'placeholder' => 'Enter Info', 'required']) !!} @if ($errors->has('info')) {{ $errors->first('info') }} @endif
{{--
{!! Form::number('vehicle_type1_price', null, ['class' => 'form-control', 'placeholder' => 'Enter Price', 'required']) !!} @if ($errors->has('vehicle_type1_price')) {{ $errors->first('vehicle_type1_price') }} @endif
{!! Form::number('vehicle_type2_price', null, ['class' => 'form-control', 'placeholder' => 'Enter price', 'required']) !!} @if ($errors->has('vehicle_type2_price')) {{ $errors->first('vehicle_type2_price') }} @endif
--}}
@section('script') @endsection