@extends('layouts.master') @section('title', __('Privacy Policy')) @section('breadcum') @endsection @section('maincontent')
{{ __('Privacy Policy') }}
@if ($config)
{!! Form::model($config, ['method' => 'PATCH', 'route' => 'pri_pol']) !!}
{!! Form::label('privacy_pol', __('Privacy Policy Text')) !!} {!! Form::textarea('privacy_pol', null, ['id' => 'editor1', 'class' => 'form-control']) !!} {{ $errors->first('privacy_pol') }}
{!! Form::close() !!}
@endif
@endsection @section('script') @endsection