19 lines
750 B
PHP
19 lines
750 B
PHP
|
|
@extends('theme::layouts.app')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<div class="flex flex-col justify-center py-20 px-10 sm:px-6 lg:px-8 min-h-screen main-wrapper terms-and-condition-page" style="background-image: url({{ asset('themes/tailwind/images/login-bg.png') }})">
|
||
|
|
<div class="mx-auto page-title-wrapper">
|
||
|
|
<h3 class="page-title">Terms and Conditions</h3>
|
||
|
|
<a href="{{ route('login') }}">Leave</a>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="mx-auto box-wrapper">
|
||
|
|
{!! $siteSetting ? $siteSetting->terms_and_conditions : '' !!}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="mx-auto bottom-links-wrapper">
|
||
|
|
<a href="{{ route('user-privacy-policy') }}" class="link">Privacy Policy</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
@endsection
|