2019-12-04 16:55:59 +01:00
|
|
|
@extends('layouts.adminpanel')
|
|
|
|
|
2019-12-06 22:34:25 +01:00
|
|
|
@section('title') Panel admina - Test requesta @endsection
|
2019-12-04 16:55:59 +01:00
|
|
|
|
|
|
|
@section('admin_content')
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<form method="POST" action="{{ route('user_start_classes_verified') }}">
|
|
|
|
<label for="classes_code"> Kod: </label>
|
|
|
|
<input type="text" name="classes_code" id="classes_code">
|
|
|
|
|
2019-12-06 22:34:25 +01:00
|
|
|
<label for="student_id_number"> ID studenta: </label>
|
2019-12-04 16:55:59 +01:00
|
|
|
<input type="text" name="student_id_number" id="student_id_number">
|
|
|
|
|
2019-12-06 22:34:25 +01:00
|
|
|
<label for="student_name"> Imię studenta: </label>
|
2019-12-04 16:55:59 +01:00
|
|
|
<input type="text" name="student_name" id="student_name">
|
|
|
|
|
2019-12-06 22:34:25 +01:00
|
|
|
<label for="student_surname"> Nazwisko studenta: </label>
|
2019-12-04 16:55:59 +01:00
|
|
|
<input type="text" name="student_surname" id="student_surname">
|
|
|
|
|
2019-12-06 22:34:25 +01:00
|
|
|
<button type="submit"> Test requesta </button>
|
2019-12-04 16:55:59 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|