36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
|
|
@extends('theme::layouts.app')
|
||
|
|
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<form method="POST" action="{{ route('cms.privacy-policy.update') }}">
|
||
|
|
@csrf
|
||
|
|
|
||
|
|
<div class="dashboard-title-flex space-between">
|
||
|
|
<h2 class="dashboard-title">{{ __("Privacy Policy(English)") }}</h2>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="terms-privacy-content">
|
||
|
|
<textarea class="tinymce" name="privacy_policy_english">{!! $siteSetting ? $siteSetting->privacy_policy_english : '' !!}</textarea>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="dashboard-title-flex space-between mt-30">
|
||
|
|
<h2 class="dashboard-title">{{ __("Privacy Policy(Chinese)") }}</h2>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="terms-privacy-content">
|
||
|
|
<textarea class="tinymce" name="privacy_policy_chinese">{!! $siteSetting ? $siteSetting->privacy_policy_chinese : '' !!}</textarea>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="text-center">
|
||
|
|
<div class="flex button-group">
|
||
|
|
<button type="submit" class="btn primary-button">{{ __("Save") }}</button>
|
||
|
|
<button type="reset" class="btn btn-error">{{ __("Reset") }}</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
|
||
|
|
|
||
|
|
@endsection
|
||
|
|
|
||
|
|
@section('script')
|
||
|
|
@endsection
|