43 lines
1.9 KiB
PHP
Executable File
43 lines
1.9 KiB
PHP
Executable File
@extends('layouts.sidebar')
|
|
|
|
@section('content')
|
|
|
|
<script src="{{ asset('resources/ckeditor/ckeditor.js') }}"></script>
|
|
@php
|
|
function findFileSite($name){
|
|
$directory = base_path('/littlelink/images/');
|
|
$files = scandir($directory);
|
|
$pathinfo = "error.error";
|
|
foreach($files as $file) {
|
|
if (strpos($file, $name.'.') !== false) {
|
|
$pathinfo = $name. "." . pathinfo($file, PATHINFO_EXTENSION);
|
|
}}
|
|
return $pathinfo;
|
|
}
|
|
@endphp
|
|
<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/").findFileSite('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/").findFileSite('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
|