{{ Form::open(['route' => ['projects.store.new.version']]) }}
@include('layouts.flash.alert')
{{ Form::label('project_id', 'Project') }}*
{{ Form::select('project_id', $projects, old('project_id'), [
'class' => "form-control select2-input",
'id' => "company_id",
'data-live-search'=>'true',
]) }}
@if($errors->has('project_id'))
{{ $errors->first('project_id') }}
@endif