20 lines
603 B
PHP
20 lines
603 B
PHP
@extends("admin.layout.base")
|
|
@extends("admin.layout.header")
|
|
|
|
@section("title")
|
|
Vaskemaskine - Rediger
|
|
@endsection
|
|
|
|
@section("path")
|
|
<a href="{{ route('washing-machines.edit', ['id' => $user->id]) }}" class="text-white">Rediger Vaskemaskiner</a> /
|
|
@endsection
|
|
|
|
@section("content")
|
|
<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>
|
|
@endsection
|