2021-04-16 01:00:00 +02:00
|
|
|
@extends('layouts.sidebar')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2022-03-23 13:57:20 +01:00
|
|
|
<script src="{{ asset('resources/ckeditor/ckeditor.js') }}"></script>
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
<section class="shadow text-gray-400">
|
|
|
|
<h2 class="mb-4 card-header"><i class="bi bi-person"> Edit Pages</i></h2>
|
|
|
|
<div class="card-body p-0 p-md-3">
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
<form action="{{ route('editSitePage') }}" method="post">
|
|
|
|
@csrf
|
|
|
|
@foreach($pages as $page)
|
|
|
|
<div class="form-group col-lg-8">
|
2023-01-09 18:07:30 +01:00
|
|
|
<h3>{{str_replace('"', "", EnvEditor::getKey('TITLE_FOOTER_TERMS'))}}</h3>
|
2022-03-23 13:57:20 +01:00
|
|
|
<textarea class="form-control ckeditor" name="terms" rows="3">{{ $page->terms }}</textarea>
|
|
|
|
</div><br>
|
2021-04-16 01:00:00 +02:00
|
|
|
<div class="form-group col-lg-8">
|
2023-01-09 18:07:30 +01:00
|
|
|
<h3>{{str_replace('"', "", EnvEditor::getKey('TITLE_FOOTER_PRIVACY'))}}</h3>
|
2022-03-23 13:57:20 +01:00
|
|
|
<textarea class="form-control ckeditor" name="privacy" rows="3">{{ $page->privacy }}</textarea>
|
|
|
|
</div><br>
|
2021-04-16 01:00:00 +02:00
|
|
|
<div class="form-group col-lg-8">
|
2023-01-09 18:07:30 +01:00
|
|
|
<h3>{{str_replace('"', "", EnvEditor::getKey('TITLE_FOOTER_CONTACT'))}}</h3>
|
2022-03-23 13:57:20 +01:00
|
|
|
<textarea class="form-control ckeditor" name="contact" rows="3">{{ $page->contact }}</textarea>
|
|
|
|
</div><br>
|
2021-04-16 01:00:00 +02:00
|
|
|
@endforeach
|
|
|
|
<button type="submit" class="mt-3 ml-3 btn btn-info">Submit</button>
|
|
|
|
</form>
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
2021-04-16 01:00:00 +02:00
|
|
|
@endsection
|