JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Settings') }} @endsection @php // $logo = asset(Storage::url('uploads/logo/')); $logo = \App\Models\Utility::get_file('uploads/logo/'); $company_logo = \App\Models\Utility::getValByName('company_logo'); $company_logo_light = \App\Models\Utility::getValByName('company_logo_light'); $company_favicon = \App\Models\Utility::getValByName('company_favicon'); $color = isset($settings['theme_color']) ? $settings['theme_color'] : 'theme-4'; $settings = App\Models\Utility::settings(); $currantLang = \App\Models\Utility::languages(); $SITE_RTL = \App\Models\Utility::getValByName('SITE_RTL'); $lang = \App\Models\Utility::getValByName('default_language'); @endphp @section('breadcrumb') @endsection @push('css-page') @endpush @push('script-page') @endpush @section('content')
{{ Form::model($settings, ['route' => 'business.setting', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
{{ __('Business Settings') }}
{{ __('Logo dark') }}
@error('company_logo')
@enderror
{{ __('Logo Light') }}
{{-- --}}
@error('company_logo_light')
{{ $message }}
@enderror
{{ __('Favicon') }}
{{-- --}}
@error('company_favicon')
@enderror
{{ Form::label('title_text', __('Title Text'), ['class' => 'col-form-label']) }} {{ Form::text('title_text', null, ['class' => 'form-control', 'placeholder' => __('Enter Title Text')]) }} @error('title_text') {{ $message }} @enderror
{{ Form::label('default_language', __('Default Language'), ['class' => 'col-form-label']) }}
{{ Form::label('SITE_RTL', __('Enable RTL'), ['class' => 'col-form-label']) }}
{{ __('Theme Customizer') }}
{{ __('Primary color Settings') }}


{{ __('Sidebar Settings') }}

{{ __('Layout Settings') }}

{!! Form::close() !!}
{{ __('System Settings') }}
{{ Form::model($settings, ['route' => 'system.settings', 'method' => 'post']) }}
{{ Form::label('site_currency', __('Currency *'), ['class' => 'col-form-label']) }} {{ Form::text('site_currency', null, ['class' => 'form-control ']) }} {{ __('Note: Add currency code as per three-letter ISO code') }}. {{ __('You can find out how to do that here.') }} @error('site_currency')
{{ $message }} @enderror
{{ Form::label('site_currency_symbol', __('Currency Symbol *'), ['class' => 'col-form-label']) }} {{ Form::text('site_currency_symbol', null, ['class' => 'form-control']) }} @error('site_currency_symbol') {{ $message }} @enderror
{{-- {{Form::label('bug_prefix',__('Bug Prefix'),['class'=>'col-form-label']) }} {{Form::text('bug_prefix',null,array('class'=>'form-control'))}} @error('bug_prefix') {{ $message }} @enderror --}} {{ Form::label('employee_prefix', __('Employee Prefix'), ['class' => 'col-form-label']) }} {{ Form::text('employee_prefix', null, ['class' => 'form-control']) }} @error('employee_prefix') {{ $message }} @enderror
{!! Form::close() !!}
{{ Form::open(['route' => 'email.settings', 'method' => 'post']) }}
{{ __('Email Settings') }}
{{ __('This SMTP will be used for sending your company-level email. If this field is empty, then SuperAdmin SMTP will be used for sending emails.') }}
{{ Form::label('mail_driver', __('Mail Driver'), ['class' => 'col-form-label mail_driver']) }} {{ Form::text('mail_driver', isset($settings['mail_driver']) ? $settings['mail_driver'] : '', ['class' => 'form-control ', 'placeholder' => __('Enter Mail Driver')]) }} @error('mail_driver') {{ $message }} @enderror
{{ Form::label('mail_host', __('Mail Host'), ['class' => 'col-form-label']) }} {{ Form::text('mail_host', isset($settings['mail_host']) ? $settings['mail_host'] : '', ['class' => 'form-control ', 'placeholder' => __('Enter Mail Host')]) }} @error('mail_host') {{ $message }} @enderror
{{ Form::label('mail_port', __('Mail Port'), ['class' => 'col-form-label']) }} {{ Form::text('mail_port', isset($settings['mail_port']) ? $settings['mail_port'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Mail Port')]) }} @error('mail_port') {{ $message }} @enderror
{{ Form::label('mail_username', __('Mail Username'), ['class' => 'col-form-label']) }} {{ Form::text('mail_username', isset($settings['mail_username']) ? $settings['mail_username'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Mail Username')]) }} @error('mail_username') {{ $message }} @enderror
{{ Form::label('mail_password', __('Mail Password'), ['class' => 'col-form-label']) }} {{ Form::text('mail_password', isset($settings['mail_password']) ? $settings['mail_password'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Mail Password')]) }} @error('mail_password') {{ $message }} @enderror
{{ Form::label('mail_encryption', __('Mail Encryption'), ['class' => 'col-form-label']) }} {{ Form::text('mail_encryption', isset($settings['mail_encryption']) ? $settings['mail_encryption'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Mail Encryption')]) }} @error('mail_encryption') {{ $message }} @enderror
{{ Form::label('mail_from_address', __('Mail From Address'), ['class' => 'col-form-label']) }} {{ Form::text('mail_from_address', isset($settings['mail_from_address']) ? $settings['mail_from_address'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Mail From Address')]) }} @error('mail_from_address') {{ $message }} @enderror
{{ Form::label('mail_from_name', __('Mail From Name'), ['class' => 'col-form-label']) }} {{ Form::text('mail_from_name', isset($settings['mail_from_name']) ? $settings['mail_from_name'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Mail From Name')]) }} @error('mail_from_name') {{ $message }} @enderror
{{ Form::close() }}
{{ __('Company Settings') }}
{{ Form::model($settings, ['route' => 'company.settings', 'method' => 'post']) }}
{{ Form::label('company_name *', __('Company Name *'), ['class' => 'col-form-label']) }} {{ Form::text('company_name', null, ['class' => 'form-control ', 'placeholder' => 'Enter Company Name']) }} @error('company_name') {{ $message }} @enderror
{{ Form::label('company_address', __('Address'), ['class' => 'col-form-label']) }} {{ Form::text('company_address', null, ['class' => 'form-control ', 'placeholder' => 'Enter Address']) }} @error('company_address') {{ $message }} @enderror
{{ Form::label('company_city', __('City'), ['class' => 'col-form-label']) }} {{ Form::text('company_city', null, ['class' => 'form-control ', 'placeholder' => 'Enter City']) }} @error('company_city') {{ $message }} @enderror
{{ Form::label('company_state', __('State'), ['class' => 'col-form-label']) }} {{ Form::text('company_state', null, ['class' => 'form-control ', 'placeholder' => 'Enter State']) }} @error('company_state') {{ $message }} @enderror
{{ Form::label('company_zipcode', __('Zip/Post Code'), ['class' => 'col-form-label']) }} {{ Form::text('company_zipcode', null, ['class' => 'form-control', 'placeholder' => 'Enter Zip/Post Code']) }} @error('company_zipcode') {{ $message }} @enderror
{{ Form::label('company_country', __('Country'), ['class' => 'col-form-label']) }} {{ Form::text('company_country', null, ['class' => 'form-control', 'placeholder' => 'Enter Country']) }} @error('company_country') {{ $message }} @enderror
{{ Form::label('company_telephone', __('Telephone'), ['class' => 'col-form-label']) }} {{ Form::text('company_telephone', null, ['class' => 'form-control', 'placeholder' => 'Enter Telephone']) }} @error('company_telephone') {{ $message }} @enderror
{{--
{{ Form::label('company_email', __('System Email *'), ['class' => 'col-form-label']) }} {{ Form::text('company_email', null, ['class' => 'form-control', 'placeholder' => 'Enter System Email']) }} @error('company_email') {{ $message }} @enderror
{{ Form::label('company_email_from_name', __('Email (From Name) *'), ['class' => 'col-form-label']) }} {{ Form::text('company_email_from_name', null, ['class' => 'form-control ', 'placeholder' => 'Enter Email']) }} @error('company_email_from_name') {{ $message }} @enderror
--}}
{{ Form::label('company_start_time', __('Company Start Time *'), ['class' => 'col-form-label']) }} {{ Form::time('company_start_time', null, ['class' => 'form-control timepicker_format']) }} @error('company_start_time') {{ $message }} @enderror
{{ Form::label('company_end_time', __('Company End Time *'), ['class' => 'col-form-label']) }} {{ Form::time('company_end_time', null, ['class' => 'form-control timepicker_format']) }} @error('company_end_time') {{ $message }} @enderror
{{ Form::label('timezone', __('Timezone'), ['class' => 'col-form-label']) }} @error('timezone') {{ $message }} @enderror
{{ Form::close() }}
{{--
@foreach ($EmailTemplates as $EmailTemplate) {{ Form::model($settings, ['route' => ['company.email.setting', $EmailTemplate->id], 'method' => 'get']) }} @csrf @endforeach
{{ __('Email Notification Settings') }}
@foreach ($EmailTemplates as $EmailTemplate)
template->is_active == 1) checked="checked" @endif type="checkbox" value="1" data-url="{{ route('company.email.setting', [$EmailTemplate->template->id]) }}" />
@endforeach
{{ Form::close() }}
--}}
{{ Form::model($settings, ['route' => ['company.email.setting'], 'method' => 'post']) }} @csrf
{{ __('Email Notification Settings') }}
@foreach ($EmailTemplates as $EmailTemplate)
template->is_active == 1) checked="checked" @endif type="checkbox" value="1" data-url="{{ route('company.email.setting', [$EmailTemplate->template->id]) }}" />
@endforeach
{{ Form::close() }}
{{ __('IP Restriction Settings') }}
@foreach ($ips as $ip) @endforeach
{{ __('IP') }} {{ 'Action' }}
{{ $ip->ip }} @can('Manage Company Settings')
@endcan @can('Manage Company Settings')
{!! Form::open(['method' => 'DELETE', 'route' => ['destroy.ip', $ip->id], 'id' => 'delete-form-' . $ip->id]) !!} {!! Form::close() !!}
@endcan
@if (Auth::user()->type == 'company')
{{ __('Zoom Meeting Settings') }}
{{ Form::open(['route' => 'zoom.settings', 'method' => 'post']) }}
{{ Form::label('zoom_account_id', __('Zoom Account ID'), ['class' => 'col-form-label']) }} {{ Form::text('zoom_account_id', isset($settings['zoom_account_id']) ? $settings['zoom_account_id'] : '', ['class' => 'form-control ', 'placeholder' => 'Enter Zoom Account ID']) }}
{{ Form::label('zoom_client_id', __('Zoom Client ID'), ['class' => 'col-form-label']) }} {{ Form::text('zoom_client_id', isset($settings['zoom_client_id']) ? $settings['zoom_client_id'] : '', ['class' => 'form-control ', 'placeholder' => 'Enter Zoom Client ID']) }}
{{ Form::label('zoom_client_secret', __('Zoom Client Secret Key'), ['class' => 'col-form-label']) }} {{ Form::text('zoom_client_secret', isset($settings['zoom_client_secret']) ? $settings['zoom_client_secret'] : '', ['class' => 'form-control ', 'placeholder' => 'Enter Zoom Client Secret Key']) }}
{{ Form::close() }}
{{ __('Slack Settings') }}
{{ __('Slack Notification Settings') }}
{{ Form::open(['route' => 'slack.setting', 'id' => 'slack-setting', 'method' => 'post', 'class' => 'd-contents']) }}
{{ Form::label('Slack Webhook URL', __('Slack Webhook URL'), ['class' => 'col-form-label']) }} {{ Form::text('slack_webhook', isset($settings['slack_webhook']) ? $settings['slack_webhook'] : '', ['class' => 'form-control w-100', 'placeholder' => __('Enter Slack Webhook URL'), 'required' => 'required']) }}
{{-- {{ Form::label('Module Setting', __('Module Setting'), ['class' => 'col-form-label']) }} --}}
  • {{ Form::label('Monthly payslip create', __('New Monthly Payslip'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('monthly_payslip_notification', '1', isset($settings['monthly_payslip_notification']) && $settings['monthly_payslip_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'monthly_payslip_notification']) }}
  • {{ Form::label('Award create', __('New Award'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('award_notification', '1', isset($settings['award_notification']) && $settings['award_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'award_notification']) }}
  • {{ Form::label('Ticket create', __('New Ticket'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('ticket_notification', '1', isset($settings['ticket_notification']) && $settings['ticket_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'ticket_notification']) }}
  • {{ Form::label('Announcement create', __('New Announcement'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('Announcement_notification', '1', isset($settings['Announcement_notification']) && $settings['Announcement_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'Announcement_notification']) }}
  • {{ Form::label('Holidays create', __('New Holidays'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('Holiday_notification', '1', isset($settings['Holiday_notification']) && $settings['Holiday_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'Holiday_notification']) }}
  • {{ Form::label('Event create', __('New Event'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('event_notification', '1', isset($settings['event_notification']) && $settings['event_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'event_notification']) }}
  • {{ Form::label('Meeting create', __('New Meeting'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('meeting_notification', '1', isset($settings['meeting_notification']) && $settings['meeting_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'meeting_notification']) }}
  • {{ Form::label('Company policy create', __('New Company Policy'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('company_policy_notification', '1', isset($settings['company_policy_notification']) && $settings['company_policy_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'company_policy_notification']) }}
  • {{ Form::label('Contract create', __('New Contract'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('contract_notification', '1', isset($settings['contract_notification']) && $settings['contract_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'contract_notification']) }}
{{ Form::close() }}
{{ __('Telegram Settings') }}
{{ __('Telegram Notification Settings') }}
{{ Form::open(['route' => 'telegram.setting', 'id' => 'telegram-setting', 'method' => 'post', 'class' => 'd-contents']) }}
{{ Form::label('Telegram Access Token', __('Telegram Access Token'), ['class' => 'col-form-label']) }} {{ Form::text('telegram_accestoken', isset($settings['telegram_accestoken']) ? $settings['telegram_accestoken'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Telegram AccessToken')]) }}
{{ Form::label('Telegram ChatID', __('Telegram ChatID'), ['class' => 'col-form-label']) }} {{ Form::text('telegram_chatid', isset($settings['telegram_chatid']) ? $settings['telegram_chatid'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Telegram ChatID')]) }}
{{-- {{ Form::label('Module Setting', __('Module Setting'), ['class' => 'col-form-label']) }} --}}
  • {{ Form::label('Monthly payslip create', __('New Monthly Payslip'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_monthly_payslip_notification', '1', isset($settings['telegram_monthly_payslip_notification']) && $settings['telegram_monthly_payslip_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_monthly_payslip_notification']) }}
  • {{ Form::label('Award create', __('New Award'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_award_notification', '1', isset($settings['telegram_award_notification']) && $settings['telegram_award_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_award_notification']) }}
  • {{ Form::label('Ticket create', __('New Ticket '), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_ticket_notification', '1', isset($settings['telegram_ticket_notification']) && $settings['telegram_ticket_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_ticket_notification']) }}
  • {{ Form::label('Announcement create', __('New Announcement'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_Announcement_notification', '1', isset($settings['telegram_Announcement_notification']) && $settings['telegram_Announcement_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_Announcement_notification']) }}
  • {{ Form::label('Holidays create', __('New Holidays '), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_Holiday_notification', '1', isset($settings['telegram_Holiday_notification']) && $settings['telegram_Holiday_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_Holiday_notification']) }}
  • {{ Form::label('Event create', __('New Event'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_event_notification', '1', isset($settings['telegram_event_notification']) && $settings['telegram_event_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_event_notification']) }}
  • {{ Form::label('Meeting create', __('New Meeting'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_meeting_notification', '1', isset($settings['telegram_meeting_notification']) && $settings['telegram_meeting_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_meeting_notification']) }}
  • {{ Form::label('Company policy create', __('New Company Policy '), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_company_policy_notification', '1', isset($settings['telegram_company_policy_notification']) && $settings['telegram_company_policy_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_company_policy_notification']) }}
  • {{ Form::label('Contract create', __('New Contract'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('telegram_contract_notification', '1', isset($settings['telegram_contract_notification']) && $settings['telegram_contract_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'telegram_contract_notification']) }}
{{ Form::close() }}
{{ __('Twilio Settings') }}
{{ __('Twilio Notification Settings') }}
{{ Form::open(['route' => 'twilio.setting', 'id' => 'twilio-setting', 'method' => 'post', 'class' => 'd-contents']) }}
{{ Form::label('Twilio SID', __('Twilio SID'), ['class' => 'col-form-label']) }} {{ Form::text('twilio_sid', isset($settings['twilio_sid']) ? $settings['twilio_sid'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Twilio Sid')]) }}
{{ Form::label('Twilio Token', __('Twilio Token'), ['class' => 'col-form-label']) }} {{ Form::text('twilio_token', isset($settings['twilio_token']) ? $settings['twilio_token'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Twilio Token')]) }}
{{ Form::label('Twilio From', __('Twilio From'), ['class' => 'col-form-label']) }} {{ Form::text('twilio_from', isset($settings['twilio_from']) ? $settings['twilio_from'] : '', ['class' => 'form-control', 'placeholder' => __('Enter Twilio From')]) }}
{{-- {{ Form::label('Module Setting', __('Module Setting'), ['class' => 'col-form-label']) }} --}}
  • {{ Form::label('Payslip create', __('New Monthly Payslip'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('twilio_monthly_payslip_notification', '1', isset($settings['twilio_monthly_payslip_notification']) && $settings['twilio_monthly_payslip_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'twilio_monthly_payslip_notification']) }}
  • {{ Form::label('Leave Approve/Reject', __('Leave Approve/Reject'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('twilio_leave_approve_notification', '1', isset($settings['twilio_leave_approve_notification']) && $settings['twilio_leave_approve_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'twilio_leave_approve_notification']) }}
  • {{ Form::label('Ticket create', __('New Ticket '), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('twilio_ticket_notification', '1', isset($settings['twilio_ticket_notification']) && $settings['twilio_ticket_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'twilio_ticket_notification']) }}
  • {{ Form::label('Award create', __('New Award'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('twilio_award_notification', '1', isset($settings['twilio_award_notification']) && $settings['twilio_award_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'twilio_award_notification']) }}
  • {{ Form::label('Trip create', __('New Trip '), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('twilio_trip_notification', '1', isset($settings['twilio_trip_notification']) && $settings['twilio_trip_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'twilio_trip_notification']) }}
  • {{ Form::label('Event create', __('New Event'), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('twilio_event_notification', '1', isset($settings['twilio_event_notification']) && $settings['twilio_event_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'twilio_event_notification']) }}
  • {{ Form::label('Announcement create', __('New Announcement '), ['class' => 'col-form-label']) }}
    {{ Form::checkbox('twilio_announcement_notification', '1', isset($settings['twilio_announcement_notification']) && $settings['twilio_announcement_notification'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'twilio_announcement_notification']) }}
{{ Form::close() }}
@endif
{{ __('Offer Letter Settings') }}
{{ __('Placeholders') }}

{{ __('Applicant Name') }} : {applicant_name}

{{ __('Company Name') }} : {app_name}

{{ __('Job title') }} : {job_title}

{{ __('Job type') }} : {job_type}

{{ __('Proposed Start Date') }} : {start_date}

{{ __('Working Location') }} : {workplace_location}

{{ __('Days Of Week') }} : {days_of_week}

{{ __('Salary') }} : {salary}

{{ __('Salary Type') }} : {salary_type}

{{ __('Salary Duration') }} : {salary_duration}

{{ __('Offer Expiration Date') }} : {offer_expiration_date}

{{ Form::open(['route' => ['offerlatter.update', $offerlang], 'method' => 'post']) }}
{{ Form::label('content', __(' Format'), ['class' => 'form-label text-dark']) }}
{{ Form::close() }}
{{ __('Joining Letter Settings') }}
{{ __('Placeholders') }}

{{ __('Applicant Name') }} : {date}

{{ __('Company Name') }} : {app_name}

{{ __('Employee Name') }} : {employee_name}

{{ __('Address') }} : {address}

{{ __('Designation') }} : {designation}

{{ __('Start Date') }} : {start_date}

{{ __('Branch') }} : {branch}

{{ __('Start Time') }} : {start_time}

{{ __('End Time') }} : {end_time}

{{ __('Number of Hours') }} : {total_hours}

{{ Form::open(['route' => ['joiningletter.update', $joininglang], 'method' => 'post']) }}
{{ Form::label('content', __(' Format'), ['class' => 'form-label text-dark']) }}
{{ Form::close() }}
{{ __('Certificate of Experience Settings') }}
{{ __('Placeholders') }}

{{ __('Company Name') }} : {app_name}

{{ __('Employee Name') }} : {employee_name}

{{ __('Date of Issuance') }} : {date}

{{ __('Designation') }} : {designation}

{{ __('Start Date') }} : {start_date}

{{ __('Branch') }} : {branch}

{{ __('Start Time') }} : {start_time}

{{ __('End Time') }} : {end_time}

{{ __('Number of Hours') }} : {total_hours}

{{ Form::open(['route' => ['experiencecertificate.update', $explang], 'method' => 'post']) }}
{{ Form::label('content', __(' Format'), ['class' => 'form-label text-dark']) }}
{{ Form::close() }}
{{ __('No Objection Certificate Settings') }}
{{ __('Placeholders') }}

{{ __('Date') }} : {date}

{{ __('Company Name') }} : {app_name}

{{ __('Employee Name') }} : {employee_name}

{{ __('Designation') }} : {designation}

{{ Form::open(['route' => ['noc.update', $noclang], 'method' => 'post']) }}
{{ Form::label('content', __(' Format'), ['class' => 'form-label text-dark']) }}
{{ Form::close() }}
{{-- Google calendar --}}
{{ Form::open(['url' => route('google.calender.settings'), 'enctype' => 'multipart/form-data']) }}
{{ __('Google Calendar') }}
{{ Form::label('Google calendar id', __('Google Calendar Id'), ['class' => 'col-form-label']) }} {{ Form::text('google_clender_id', !empty($settings['google_clender_id']) ? $settings['google_clender_id'] : '', ['class' => 'form-control ', 'placeholder' => 'Google Calendar Id']) }}
{{ Form::label('Google calendar json file', __('Google Calendar JSON File'), ['class' => 'col-form-label']) }}
{{ Form::close() }}
{{-- Webhook Settings --}}
{{ __('Webhook Settings') }}
@can('Create Webhook') @endcan
@foreach ($webhooks as $webhook) @endforeach
{{ __('Module') }} {{ __('URL') }} {{ __('Method') }} {{ 'Action' }}
{{ $webhook->module }} {{ $webhook->url }} {{ $webhook->method }} @can('Edit Webhook')
@endcan @can('Delete Webhook')
{!! Form::open([ 'method' => 'DELETE', 'route' => ['destroy.webhook', $webhook->id], 'id' => 'delete-form-' . $webhook->id, ]) !!} {!! Form::close() !!}
@endcan
{{-- Biometric Attendance Seetings --}}
{{ Form::open(['route' => ['biometric-settings.store'], 'method' => 'post']) }}
{{ __('Biometric Attendance') }}
{{ __('Note') }}: {{ __('Note that you can use the biometric attendance system only if you are using the ZKTeco machine for biometric attendance.') }}
{{ Form::label('zkteco_api_url', __('ZKTeco Api URL'), ['class' => 'col-form-label']) }} {{ Form::text('zkteco_api_url', !empty($settings['zkteco_api_url']) ? $settings['zkteco_api_url'] : '', ['class' => 'form-control ', 'placeholder' => 'ZKTeco Api URL', 'required' => 'required']) }} {{ __('Example:') }} http://110.78.645.123:8080
{{ Form::label('username', __('Username'), ['class' => 'col-form-label']) }} {{ Form::text('username', !empty($settings['username']) ? $settings['username'] : '', ['class' => 'form-control ', 'placeholder' => 'Username', 'required' => 'required']) }}
{{ Form::label('user_password', __('Password'), ['class' => 'col-form-label']) }} {{ Form::text('user_password', !empty($settings['user_password']) ? $settings['user_password'] : '', ['class' => 'form-control ', 'placeholder' => 'Password', 'required' => 'required']) }}
{{ Form::label('auth_token', __('Auth Token'), ['class' => 'form-label']) }} @if (empty($settings['auth_token'])) {{ __('Please first generate auth token.') }} @endif {{ Form::textarea('', !empty($settings['auth_token']) ? $settings['auth_token'] : null, ['class' => 'form-control font-style', 'disabled' => 'disabled', 'rows' => 3]) }}
{{ Form::close() }}
@endsection