@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title']]) !!}
@csrf
{{ _trans('settings.Date and time setting') }}
{{ _trans('settings.Language setting') }}
@if ($errors->has('lang'))
{{ $errors->first('lang') }}
@endif
@if (!isMainCompany())
{{ _trans('settings.Attendance setting') }}
@if ($errors->has('attendance_method'))
{{ $errors->first('attendance_method') }}
@endif
@if ($errors->has('max_work_hours'))
{{ $errors->first('max_work_hours') }}
@endif
@if (isModuleActive('LiveTracking')) @include('livetracking::partials.configuration', ['data' => $data]) @endif
{{ _trans('settings.Api Key') }}
@if ($errors->has('google_meet_credentials'))
{{ $errors->first('google_meet_credentials') }}
@endif
@endif {{--
{{ _trans('settings.Employee') }}
@if ($errors->has('is_employee_passport_required'))
{{ $errors->first('is_employee_passport_required') }}
@endif
@if ($errors->has('is_employee_eid_required'))
{{ $errors->first('is_employee_eid_required') }}
@endif
--}}
{{ _trans('settings.Currency setting') }}
@if(hasPermission('configuration_update'))
@endif
@endsection @section('script') @endsection