@extends('layouts.app') @section('content')
@role('root|admin')
@csrf @endrole

Admin Configuration

@error('name') {{ $message }} @enderror
@error('logo') {{ $message }} @enderror
Subscription Enable/Disable
@role('root|admin') @else @endrole

Subscription {{ $websetting?->subscription ? 'Disable' : 'Enable' }}

@if (!$websetting?->subscription)
@endif
@error('fav_icon') {{ $message }} @enderror
Ads Enable/Disable
@role('root|admin') @else @endrole

Ads Show {{ $websetting?->ads_show ? 'Enable' : 'Disable' }}

@if ($websetting?->ads_show)
@endif
@role('root|admin')
@endrole
@endsection @push('scripts') @endpush