2020-06-25 07:04:23 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Link - Rediger
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-06-29 07:19:43 +00:00
|
|
|
<a href="{{route('external-links.edit', ['external_link' => $link])}}" class="text-white">Rediger Link</a> /
|
2020-06-25 07:04:23 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
|
|
|
<h1>Rediger Link:</h1>
|
2020-06-29 07:19:43 +00:00
|
|
|
<form method="post" action="{{route("external-links.update", ["external_link" => $link])}}">
|
2020-06-25 07:04:23 +00:00
|
|
|
@csrf
|
2020-06-29 07:19:43 +00:00
|
|
|
@method("PUT")
|
2020-06-25 07:04:23 +00:00
|
|
|
<label for="title">Titel:</label>
|
2020-06-29 07:19:43 +00:00
|
|
|
<input value="{{$link->name}}" type="text" name="title" id="title" required>
|
2020-06-25 07:04:23 +00:00
|
|
|
<label for="link">Linket:</label>
|
2020-06-29 07:19:43 +00:00
|
|
|
<input value="{{$link->link}}" type="text" name="link" id="link" required>
|
2020-06-25 07:04:23 +00:00
|
|
|
<input type="submit" class="btn btn-dark text-white" value="Rediger">
|
|
|
|
</form>
|
|
|
|
@endsection
|