@extends('layout.sidebar') @section('content') {{HTML::script('js/courseemployee/assignCoursesToCourseAuxiliar.js')}} {{ Form::open(array('class'=>'form-signin')) }}

ASIGNACIÓN DE CURSOS PARA PERFILES


{{ Form::label('','Seleccione un perfil:',array('class'=>'col-md-3')) }}
{{ Form::select('profile',$profiles,null,array('id'=>'profile','class'=>"form-control")) }}


{{ Form::label('','Seleccione un empleado:',array('class'=>'col-md-3')) }}
{{Form::text('autocomplete','',array('id'=>'autocomplete','class'=>'form-control'))}}


{{ Form::label('','Año lectivo:') }}
{{ Form::select('year',$schoolYear,null,array('id'=>'year','class'=>"form-control")) }}
{{ Form::label('','Sección:') }}
{{ Form::select('sections',array(''=>'-SELECCIONE-'),null,array('id'=>'sections','class'=>"form-control")) }}
{{ Form::label('','Nivel:') }}
{{ Form::select('levels',array(''=>'-SELECCIONE-'),null,array('id'=>'levels','class'=>"form-control")) }}




{{ Form::close()}} @stop