<div class="addStudentContent">
	<h3>Add student to selected group</h3>

	Select from school: <br><br>
	<select name="school_id" id="schools">
		<?php foreach($schools as $school): ?>
			<option value="<?php echo e($school->id); ?>"><?php echo e($school->name); ?></option>
		<?php endforeach; ?>
	</select>
</div>