@extends('layouts.sidebar') @section('content') <script src="{{ asset('resources/ckeditor/ckeditor.js') }}"></script> <section class="shadow text-gray-400"> <h2 class="mb-4 card-header"><i class="bi bi-person"> Site</i></h2> <div class="card-body p-0 p-md-3"> <form action="{{ route('editSite') }}" enctype="multipart/form-data" method="post"> @csrf <div class="form-group col-lg-8"> <label>Site logo</label>@if(file_exists(base_path("littlelink/images/").findFile('avatar')))<a title="Remove icon" class="hvr-grow p-1 text-danger" style="padding-left:5px;" href="{{ route('delAvatar') }}"><i class="bi bi-trash-fill"></i></a>@endif <input type="file" class="form-control-file" name="image"> </div> <div class="form-group col-lg-8"> <label>Favicon</label>@if(file_exists(base_path("littlelink/images/").findFile('favicon')))<a title="Remove icon" class="hvr-grow p-1 text-danger" style="padding-left:5px;" href="{{ route('delFavicon') }}"><i class="bi bi-trash-fill"></i></a>@endif <input type="file" class="form-control-file" name="icon"> </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> </div> </section> @endsection