@extends('layouts.school.master') @section('title') {{ __('privacy_policy') }} @endsection @section('css') @endsection @section('content') @php $dir = Session::get('language')->is_rtl ? 'rtl' : 'ltr'; @endphp

{{ __('privacy_policy') }}

@if (isset($schoolSettings['privacy_policy']))
{!! htmlspecialchars_decode($schoolSettings['privacy_policy'] ?? __('privacy_policy_is_not_available_at_the_moment')) !!}
@else
{{ __('privacy_policy_is_not_available_at_the_moment') }}
@endif
@endsection