20 lines
773 B
PHP
20 lines
773 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title') Wybór miejsca @endsection
|
|
@section('additional_meta')
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('css/map/jquery.seat-charts.css') }}">
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="wrapper">
|
|
<div class="map-buttons">
|
|
<a href="{{ route('user_classes') }}" class="checkout-button end-button"> Zakończ zapisy </a>
|
|
</div>
|
|
<h2>{{ $student_name }} {{ $student_surname }}</h2>
|
|
<h3>{{ $student_id_number }} </h3>
|
|
<h3>wybrane miejsce:</h3>
|
|
<ul id="sel-seat"> {{ $seat_number }}</ul>
|
|
<a href="{{ route('user_start_classes', [$classes_id]) }}"><button type="button" class="checkout-button">Następny student »</button></a>
|
|
</div>
|
|
@endsection
|