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-06-26 10:20:20 +00:00
|
|
|
<a href="{{ route('washing-reservations.create') }}" class="text-white">Opret Vaske Reservationer</a> /
|
2020-06-25 11:30:58 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
|
|
|
<h1>Opret Booking:</h1>
|
|
|
|
<form method="post" action="{{ route("washing-reservations.store") }}">
|
|
|
|
@csrf
|
|
|
|
<label for="name_first">Fornavn:</label>
|
|
|
|
<input type="text" name="name_first" id="name_first" required>
|
|
|
|
<label for="name_last">Efternavn:</label>
|
|
|
|
<input type="text" name="name_last" id="name_last" required>
|
|
|
|
<label for="tel">Telefon nr:</label>
|
|
|
|
<input type="tel" name="phone" id="tel" required>
|
|
|
|
<select name="machine_choice">
|
|
|
|
<option>Vaskemaskine 1</option>
|
|
|
|
</select>
|
|
|
|
<input type="submit" class="btn btn-dark text-white" value="Opret">
|
|
|
|
</form>
|
|
|
|
@endsection
|