@extends('layouts.sidebar') @section('content') @if (in_array('Manage Settings', $privileges))

Settings

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@endif @if (in_array('Benefits Setting', $privileges))

Contribution Breakdown:

@include('Admin.Settings.contribution')
@endif @if (in_array('Role Setting', $privileges))

Role Creation:

@include('Admin.Settings.role') @include('Admin.Settings.rolemodal')
@endif @if (in_array('Password Setting', $privileges))

Change Password:

@include('Admin.Settings.changepass')
@endif @if (in_array('Billing Setting', $privileges))

Billing Settings:

@include('Admin.Settings.charges')
@endif
@else
You don't have privilege to access this page
@endif @endsection