{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Enter Title', 'required']) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::select('type', [ 'driver' => 'Driver', 'rider' => 'Rider', ], null, [ 'class' => 'form-control', ]) !!} @if ($errors->has('type'))
{{ $errors->first('type') }} @endif
{!! Form::text('description', null, ['class' => 'form-control', 'placeholder' => 'Enter description']) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
@section('script') @endsection