@if($modular == true)
{!! Form::label('txt', 'Módulo:',array('style' => 'font-weight:bold;')) !!}
{!! Form::label('modulo', $item['modulo']['nombre']) !!}
@endif
{!! Form::label('txt', 'Código:',array('style' => 'font-weight:bold;')) !!}
{!! Form::label('codigo', $item['curso']['codigo']) !!}
{!! Form::label('txt', 'Nombre:',array('style' => 'font-weight:bold;')) !!}
{!! Form::label('nombre', $item['curso']['nombre']) !!}
{!! Form::label('txt', 'Número de créditos:',array('style' => 'font-weight:bold;')) !!}
{!! Form::label('creditos',$item['curso']['creditos']) !!}
{!! Form::label('txt', 'Cantidad de horas:',array('style' => 'font-weight:bold;')) !!}
{!! Form::label('horas', $item['curso']['horas']) !!}
{!! Form::label('txt', 'Tipo de Curso:',array('style' => 'font-weight:bold;')) !!}
{!! Form::label('tipo',($item['tipo'] == 1 ? 'Específico' : ($item['tipo'] == 2 ? 'Transversal' : 'Electivo'))) !!}
{!! Form::label('txt', 'Descripción',array('style' => 'font-weight:bold;')) !!}
{!! Form::label('descripcion', $item['curso']['descripcion']) !!}
{!! Form::label('txt', 'Temas del curso',array('style' => 'font-weight:bold;')) !!}
{!! Form::label('temas', $item['curso']['temas']) !!}