first commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user