Add Issue to {{ $repo }}
{{ bForm::open() }}
{{ bForm::text('title', Input::old('title'), array('class' => 'input-block-level', 'placeholder' => 'Comment'), 'Title') }}
{{ bForm::select('milestone', $milestones, Input::old('milestone'), array(), 'Milestone') }}
{{ bForm::select('assignee', $contributors, Input::old('assignee'), array(), 'Assignee') }}
@foreach ($labelOptions as $label)
@endforeach
{{ bForm::textarea('body', Input::old('body'), array('class' => 'input-block-level', 'placeholder' => 'Comment'), 'Body') }}
@foreach ($labelOptions as $label)
{{ bForm::hidden('labels['. $label .']', 0, array('id' => $label)) }}
@endforeach
{{ bForm::submit('Submit issue') }}
{{ bForm::close() }}