You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
1 year ago
|
@extends('layouts.admin.app')
|
||
|
|
||
|
@section('title',translate('About us'))
|
||
|
|
||
|
@push('css_or_js')
|
||
|
|
||
|
@endpush
|
||
|
|
||
|
@section('content')
|
||
|
<div class="content container-fluid">
|
||
|
<!-- Page Header -->
|
||
|
<div class="page-header_ pb-4">
|
||
|
<div class="row align-items-center">
|
||
|
<div class="col-sm mb-2 mb-sm-0">
|
||
|
<h1 class="page-header-title">{{translate('messages.about_us')}}</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- End Page Header -->
|
||
|
<div class="row gx-2 gx-lg-3">
|
||
|
<div class="col-sm-12 col-lg-12 mb-3 mb-lg-2">
|
||
|
<form action="{{route('admin.business-settings.about-us')}}" method="post" id="tnc-form">
|
||
|
@csrf
|
||
|
<div class="form-group">
|
||
|
<textarea class="ckeditor form-control" name="about_us">{!! $data['value'] !!}</textarea>
|
||
|
</div>
|
||
|
<div class="btn--container justify-content-end">
|
||
|
<button type="submit" class="btn btn--primary">{{translate('messages.submit')}}</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@endsection
|
||
|
|
||
|
@push('script_2')
|
||
|
<script src="//cdn.ckeditor.com/4.14.1/standard/ckeditor.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
$(document).ready(function () {
|
||
|
$('.ckeditor').ckeditor();
|
||
|
});
|
||
|
</script>
|
||
|
@endpush
|