@include('partials.header-form', [
'title' => 'Terms & Privacy Details',
'action' => route('term-privacy.edit', ['id' => $term['tp_uuid'] ?? '']),
'actionBtnName' => 'Update',
'styleBtn' => 'background: white; border-color: rgb(184, 187, 201); color: rgb(101, 105, 127)',
'deleteAction' => "delete('{{ $term['tp_uuid'] ?? '' }}')",
'deleteBtnName' => 'Delete'
])
@if(session('error'))
{{ session('error') }}
@endif
@if(session('success'))
{{ session('success') }}
@endif
@if($term)
Details
Title:
{{ $term['title'] }}
@else
No term data found.
@endif