{{Form::text('firstname', \Input::old('firstname'), array('class' => 'form-control form-control-bordered', 'tabindex' => '1'))}} {{$errors->first('firstname')}}
{{ Form::text('lastname', \Input::old('lastname'), array('class' => 'form-control form-control-bordered', 'tabindex' => '2')) }} {{$errors->first('lastname')}}
{{ Form::email('email', \Input::old('email'), array('class' => 'form-control form-control-bordered',
'tabindex' => '3')) }} {{$errors->first('email') }}
{{ Form::text('title', \Input::old('title'), array('class' => 'form-control form-control-bordered',
'tabindex' => '4')) }} {{$errors->first('email') }}
{{ Form::text('location', \Input::old('location'), array('class' => 'form-control form-control-bordered',
'tabindex' => '5')) }} {{$errors->first('location') }}
{{Form::submit('Complete!', array('class' => 'btn btn-success btn-large submit-button'))}}