2020-06-25 11:30:58 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
2020-06-26 10:20:20 +00:00
|
|
|
Vaske Reservationer - Opret
|
2020-06-25 11:30:58 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-07-01 09:38:09 +00:00
|
|
|
<a href="{{ route('washing-reservations.create') }}" class="text-white">Opret Vaskemaskine Reservation</a> /
|
2020-06-25 11:30:58 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-07-01 09:38:09 +00:00
|
|
|
<h1>Opret Reservation:</h1>
|
2020-06-25 11:30:58 +00:00
|
|
|
<form method="post" action="{{ route("washing-reservations.store") }}">
|
|
|
|
@csrf
|
2020-07-01 09:38:09 +00:00
|
|
|
<label for="time">Tidspunkt:</label>
|
|
|
|
<input type="datetime-local" name="time" id="time" required>
|
|
|
|
<label for="machine">Vaskemaskine:</label>
|
|
|
|
<select name="machine" id="machine" required>
|
|
|
|
<option disabled selected value> -- Vælg Vaskemaskine -- </option>
|
|
|
|
@foreach($machines as $machine)
|
|
|
|
<option value="{{ $machine->id }}">{{ $machine->name }}</option>
|
|
|
|
@endforeach
|
2020-06-25 11:30:58 +00:00
|
|
|
</select>
|
|
|
|
<input type="submit" class="btn btn-dark text-white" value="Opret">
|
|
|
|
</form>
|
|
|
|
@endsection
|