@extends('layouts.app') @section('title', trans('menu.profile_title')) @section('content') @if(Session::has('messageForSuperAdmin'))

{{ Session::get('messageForSuperAdmin') }}

@endif
{{-- --}}

{{ trans('title.company_information') }}

{{__('label.super_admin')}}

{{__('label.e_maildres')}}

{{$admins->pluck('email')->implode(', ')}}


{{__('label.outgoing_email_settings')}}

{{__('label.Standard_afzenderadres')}}

{{$settings->outgoing_email}}


{{__('label.country_Settings')}}

{{__('label.country')}}

{{$settings->country->name}}

{{__('label.time_zone')}}

{{$settings->timezone->name}}

{{__('label.language')}}

{{$settings->language->english}}


{{__('label.notification_settings')}}

{{__('label.push_notification')}}

{{ $settings->isPushNotificationEnable() ? __('forms.lbl_enabled'): __('forms.lbl_disabled') }}

{{__('forms.lbl_configurable')}}

{{ $settings->isPushNotificationConfigurable() ? __('forms.lbl_yes'):__('forms.lbl_no') }}

@stop @section('footer-script') @stop