File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/53772aff8a1ccb08c8f3c0a1568d2723
<?php echo Form::open(array('route' => array('kms.orders.search','#resultaten'))); ?> <div class="entity-attribute entity-attribute-title "> Zoeken </div> <div class="entity-attribute entity-attribute-text ng-scope" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="username">Bestelnummer</label> <?php echo form::text('ordernumber','',['class'=>'ng-pristine ng-valid','placeholder'=>"Vul een bestelnummer in", 'id'=>'']); ?> </div> <div class="entity-attribute entity-attribute-text ng-scope" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="username">Klantnummer</label> <?php echo form::text('customernumber','',['class'=>'ng-pristine ng-valid','placeholder'=>"Vul een klantnummer in", 'id'=>'']); ?> </div> <div class="entity-attribute entity-attribute-text ng-scope" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="username">Achternaam</label> <?php echo form::text('sir_name','',['class'=>'ng-pristine ng-valid','placeholder'=>"Vul een achternaam in", 'id'=>'']); ?> </div> <div class="entity-attribute entity-attribute-text ng-scope" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="company">Bedrijfsnaam</label> <?php echo form::text('company','',['class'=>'ng-pristine ng-valid','placeholder'=>"Vul een bedrijfsnaam in", 'id'=>'']); ?> </div> <div class="entity-attribute entity-attribute-text ng-scope" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="username">Email</label> <?php echo form::text('email','',['class'=>'ng-pristine ng-valid','placeholder'=>"Vul een email addres in", 'id'=>'']); ?> </div> <div class="entity-attribute entity-attribute-text ng-scope" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="username">Straat</label> <?php echo form::text('street','',['class'=>'ng-pristine ng-valid','placeholder'=>"Vul een straat in (voeg een % toe voor en/of achter de zoekterm voor uitgebreide resultaten)", 'id'=>'']); ?> </div> <div class="entity-attribute entity-attribute-text ng-scope" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="username">Huisnummer</label> <?php echo form::text('nr','',['class'=>'ng-pristine ng-valid','placeholder'=>"Vul een huisnummer in", 'id'=>'']); ?> </div> <div class="entity-attribute entity-attribute-text ng-scope" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="username">Postcode</label> <?php echo form::text('postcode','',['class'=>'ng-pristine ng-valid','placeholder'=>"Vul een postcode in", 'id'=>'']); ?> </div> <div class="entity-attribute entity-attribute-text ng-scope status" ng-controller="KmsAttributeTextFieldController" title="" data-uk-tooltip="{pos:'bottom-right'}"> <label for="username">Status</label> <div class="order-status-box"> <?php echo Form::select('status', [ 0=> "Selecteer een status" , "openstaand" => "Openstaand", "betaald" => "Betaald", "verzonden" => "Verzonden", "voltooid" => "Voltooid", "geannuleerd" => "geannuleerd", "in_behandeling" => "In behandeling", "gedeeltelijk_verzonden" => "Gedeeltelijk Verzonden", ], NULL, ['class'=>'order-status selectize']); ?> </div> </div> <div class="entity-attribute entity-attribute-button"> <?php echo Form::submit('Zoeken'); ?> </div> <?php echo Form::close(); ?> <?php if(\Session::get('errors') ): ?> <div class="error-block"> <?php echo \Session::get('errors'); ?> </div> <?php endif; ?>