{!!Form::label('corte','Cohorte')!!}
{!!Form::text('corte', null, ['class' => 'form-control', 'id' => 'periodo','placeholder'=>'AÑO-I o AÑO-II'])!!} @if ($errors->has('corte')) {{ $errors->first('corte') }} @endif
{!!Form::label(' Estatus')!!}
{{ Form::select('estatus', array('Activo' => 'Activo', 'Inactivo' => 'Inactivo'), null, ['class'=>'form-control','placeholder' => '.:Seleccione:.']) }} @if ($errors->has('estatus')) {{ $errors->first('estatus') }} @endif
{!!Form::submit('Guardar', ['class' => 'btn btn-primary'])!!}   Regresar