LinkStack/resources/views/studio/add-link.blade.php

39 lines
1.6 KiB
PHP
Raw Normal View History

2021-04-16 01:00:00 +02:00
@extends('layouts.sidebar')
@section('content')
<h2 class="mb-4"><i class="bi bi-plus"> Add Link</i></h2>
<form action="{{ route('addLink') }}" method="post">
@csrf
<div class="form-group col-lg-8">
<label>Link*</label>
2021-04-16 01:00:00 +02:00
<input type="text" name="link" class="form-control" placeholder="https://google.com">
</div>
2021-07-06 10:51:16 +02:00
<div class="form-group col-lg-8">
<label>Title</label>
<input type="text" name="title" class="form-control" placeholder="Internal name (optional)">
2021-07-06 10:51:16 +02:00
</div>
2021-04-16 01:00:00 +02:00
<div class="form-group col-lg-8">
<label for="exampleFormControlSelect1">Button*</label>
2021-04-16 01:00:00 +02:00
<select class="form-control" name="button">
@foreach($buttons as $button)
<option> {{ $button->name }} </option>
@endforeach
</select>
<br>
<label>* Required fields</label><br>
2021-04-16 01:00:00 +02:00
</div>
<div class="row"><button type="submit" class="mt-3 ml-3 btn btn-info">Submit</button><a style="color:white;background-color:#f8b739;" class="mt-3 ml-3 btn" href="{{ url('/studio/links') }}">See all links</a></div>
2021-04-16 01:00:00 +02:00
</form>
<br><br><details>
<summary>More information</summary>
<pre style="color: grey;">
The 'Custom' button allows you to add a custom link, where the text on the button is determined with the link title set above.
The 'Custom_website' button functions similar to the Custom button, with the addition of a function that requests the favicon from the chosen URL and uses it as the button icon.
</pre>
</details>
2021-04-16 01:00:00 +02:00
@endsection