36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
@extends('theme::layouts.app')
|
|
|
|
|
|
@section('content')
|
|
<form method="POST" action="{{ route('cms.terms-and-conditions.update') }}">
|
|
@csrf
|
|
|
|
<div class="dashboard-title-flex space-between">
|
|
<h2 class="dashboard-title">{{ __("Terms and Conditions(English)") }}</h2>
|
|
</div>
|
|
|
|
<div class="terms-privacy-content">
|
|
<textarea class="tinymce" name="terms_and_conditions_english">{!! $siteSetting ? $siteSetting->terms_and_conditions_english : '' !!}</textarea>
|
|
</div>
|
|
|
|
<div class="dashboard-title-flex space-between mt-30">
|
|
<h2 class="dashboard-title">{{ __("Terms and Conditions(Chinese)") }}</h2>
|
|
</div>
|
|
|
|
<div class="terms-privacy-content">
|
|
<textarea class="tinymce" name="terms_and_conditions_chinese">{!! $siteSetting ? $siteSetting->terms_and_conditions_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 |