Request quote or proposal
                            {{ Form::model($form, ['method'=>'post', 'files' => 'true', 'enctype'=>'multipart/form-data','autocomplete'=>'off']) }}
                                {{ Form::token() }}
                                
                                    
                                
                            {{ Form::close() }}
                        
                    
                                        {{ Form::label('organization', 'Company') }}
                                        {{ Form::text('organization', null, ['class'=>'form-control', 'placeholder'=>'Company']) }}
                                        @if ($errors->has('organization'))
                                            
                                                {{ $errors->first('organization') }}
                                            
                                        @endif
                                    
                                    
                                        {{ Form::label('contact', 'Contact') }}
                                        {{ Form::text('contact', null, ['class'=>'form-control', 'placeholder'=>'Contact']) }}
                                        @if ($errors->has('contact'))
                                            
                                                {{ $errors->first('contact') }}
                                            
                                        @endif
                                    
                                    
                                        {{ Form::label('date', 'Due Date') }}
                                        
                                    
                                            {!! Form::text('date', null, ['class' => 'date form-control','required'=>'required','data-provide'=>'datepicker','data-date-autoclose'=>'true','placeholder'=>'mm/dd/yyyy','pattern'=>'(0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])[- /.](19|20)\d\d','autocomplete'=>'off']) !!}
                                          
                                              
                                          
                                        
                                    
                                        {{ Form::label('description', 'Description') }}
                                        {{ Form::textarea('description', null, ['class'=>'form-control', 'placeholder'=>'Description','resize'=>'none']) }}
                                        @if ($errors->has('description'))
                                            
                                                {{ $errors->first('description') }}
                                            
                                        @endif
                                    
                                    
                                        {{ Form::label('priority', 'Priority') }}
                                        {{ Form::select('priority', [
                                            'Low' => 'Low',
                                            'Medium' => 'Medium',
                                            'High' => 'High',
                                        ], null, [
                                            'class'=>'form-control standards_id_input',
                                        ]) }}
                                        @if ($errors->has('priority'))
                                            
                                                {{ $errors->first('priority') }}
                                            
                                        @endif
                                    
                                    
                                        {{ Form::label('contact_method', 'Contact method') }}
                                        {{ Form::select('contact_method', [
                                            'Email' => 'Email',
                                            'Phone' => 'Phone',
                                        ], null, [
                                            'class'=>'standards_id_input form-control',
                                        ]) }}
                                        @if ($errors->has('contact_method'))
                                            
                                                        {{ $errors->first('contact_method') }}
                                                    
                                        @endif
                                    
                                    
                                        Upload
                                        {{ Form::file('attache1', ['id' => 'attache1', 'class'=>'inputfile form-control']) }}
                                        {{ Form::label('attache1', 'No file selected') }}  
                                        @if ($errors->has('attache1'))
                                            
                                                {{ $errors->first('attache1') }}
                                            
                                        @endif