LinkStack/resources/views/panel/site.blade.php
Julian Prieber 393e18a3c9 Added visual HTML editor
Added visual HTML editor for editing HTML on the footer and home pages. This editor is based on the open source CKEditor a Smart Visual Text Editor for HTML coded in JavaScript.

Read the Blog post about this topic for more info about this feature here: https://blog.littlelink-custom.com/visual-html-editor/
2022-03-23 13:57:20 +01:00

23 lines
777 B
PHP
Executable File

@extends('layouts.sidebar')
@section('content')
<script src="{{ asset('resources/ckeditor/ckeditor.js') }}"></script>
<h2 class="mb-4"><i class="bi bi-person"> Site</i></h2>
<form action="{{ route('editSite') }}" enctype="multipart/form-data" method="post">
@csrf
<div class="form-group col-lg-8">
<label>Site logo</label>
<input type="file" class="form-control-file" name="image">
</div>
<div class="form-group col-lg-8">
<h3>Home message</h3>
<textarea class="form-control ckeditor" name="message" rows="3">{{ $home_message }}</textarea>
</div>
<button type="submit" class="mt-3 ml-3 btn btn-info">Submit</button>
</form>
@endsection