2020-06-16 07:06:45 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
2020-06-24 12:19:55 +00:00
|
|
|
Vaskemaskine - Rediger
|
2020-06-16 07:06:45 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-06-24 12:19:55 +00:00
|
|
|
<a href="{{ route('washing-machines.edit', ['id' => $user->id]) }}" class="text-white">Rediger Vaskemaskiner</a> /
|
2020-06-16 07:06:45 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-06-24 12:19:55 +00:00
|
|
|
<form method="post" action="{{ route("washing-machines.store") }}">
|
|
|
|
@csrf
|
|
|
|
<label for="name_first">Vaskemaskine Navn:</label>
|
|
|
|
<input type="text" name="name" id="name" max="60" required>
|
|
|
|
<input type="submit" class="btn btn-dark text-white" value="Opret">
|
|
|
|
</form>
|
2020-06-16 07:06:45 +00:00
|
|
|
@endsection
|