@extends('app') @section('content') @include('errors.partials.alert',$errors->destroy)
Añadir ejecutivo

Mis ejecutivos

{!! Form::open([ 'method' => 'GET', 'class' => 'form-horizontal']) !!} {!! Form::hidden('active_tab', 'executive') !!}
{!!Form::text('executive[employee_number]', (Input::get('executive')['employee_number']), ['class' => 'form-control', 'maxlength' => 6])!!}
{!! Form::close() !!} @if($executives->count() > 0)
@foreach ($executives as $executive) @endforeach
No. empleado Nombre(s) Usuario CUSP
{{$executive->no_emp}} {{$executive->fullname}} {{$executive->cusp}} Editar
{!! $executives->appends(array_merge(Input::only(['executive'],['active_tab' => 'executive'])))->render()!!}
@else
No hay usuarios que mostrar
@endif
@stop @section('script') @stop