@extends('adminlte::page') @section('title', 'Settings | ' . Config::get('adminlte.title')) @section('content_header')

Settings

@stop @section('content') {{--Show message if any--}} @include('layouts.flash-message')

Update

{{ html()->form('POST', route($data->form_action))->attribute('autocomplete', 'off')->acceptsFiles()->open() }} {!! html()->hidden('id', $data->id, ['id' => 'user_id']) !!}
System Name
{!! html()->text('app_name', $data->app_name)->class('form-control')->id('app_name') !!}

Your System Name

Color Theme
{!! html()->select('color', ['olive' => 'Olive', 'teal' => 'Teal', 'navy' => 'Navy', 'cyan' => 'Cyan', 'red' => 'Red', 'blue' => 'Blue', 'green' => 'Green'], $data->color)->class('form-control')->id('color') !!}

Choose color. Color will show in Attendance page. So you can see their shift from the color

{{-- Logo --}}
Copyright
{!! html()->text('copyright', $data->copyright)->class('form-control')->id('copyright') !!}

Copyright name

Key App
{!! html()->text('key_app', $data->key_app)->class('form-control')->id('key')->required()->attribute('readonly', true) !!}

Application Key is used for communication with the Application. You can change the key by clicking on the button "Generate New Key" don't forget to save it

Timezone
{!! html()->select('timezone', $timezone, $data->timezone, ['id' => 'timezone'])->class('form-control select2') !!}

Fill in the Timezone you are

{!! QrCode::size(150)->generate($data->qr) !!}

QR Code

This QR code is used for the first time opening the App.
Scan this QR and this is done only once.

{!! html()->form()->close() !!}
@stop @section('css') @stop @section('js') @stop