@if(isset($sedes)) {{ Form::select('sede_id', $sedes, null, ['class'=>'form-control', 'placeholder' => '.:Seleccione:.', 'id'=>'sede_id']) }} @endif @if ($errors->has('sede_id')) {{ $errors->first('sede_id') }} @endif
{!!Form::label('corte','Cohorte')!!}
@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