You can enroll students in this setting, by choosing the course and uploading a .txt file with the students numbers
{{ Form::open(['action' => 'CoursesController@updateCourseInfo', 'enctype'=>"multipart/form-data"]) }}
{{ Form::label('program_id2', 'Associated Program') }}
{{ Form::label('semester_assoc', 'Course Semester') }}
{{Form::label('select_course', "Course")}}
{{ Form::label("name",'Name')}}
{{ Form::text('name', Input::old('name'), ['class'=>'form-control', 'placeholder' => "Introducción a la ...", 'id'=> 'edit_name'])}}
{{ Form::label('code', 'Code') }}
{{ Form::text('code', Input::old('code'), ['class' => 'form-control', 'placeholder' => 'TEST', 'maxLength' => 4, 'id'=> 'edit_code']) }}
{{ Form::label('number', 'Number') }}
{{ Form::text('number', Input::old('number'), ['class' => 'form-control', 'placeholder' => '3001', 'maxLength' => 4, 'id'=> 'edit_number']) }}
{{ Form::label('section', 'Section') }}
{{ Form::text('section', Input::old('section'), ['class' => 'form-control', 'placeholder' => '001', 'maxLength' => 3, 'id'=> 'edit_section']) }}
{{ Form::label('program', 'Program') }}
{{ Form::label('user_id', 'Professor') }}
{{ Form::label("semester_id",'Semester')}}
{{Form::label('modality','Course Modality')}}
{{ Form::submit('Edit Course', ['class' => 'btn btn-primary btn-block', 'name' => 'edit_course_info']) }}
{{ Form::close() }}