@extends('layouts.admin.app') @section('title') Settings @stop @section('style') @endsection @section('main')
{!! Form::open(['method'=>'POST','action' => 'TaskSettingsController@addEmployee']) !!}
{!! Form::select('department',$departmentPluck, null,['class'=>'form-control', 'placeholder'=>'Choose Department']) !!} @if ($errors->has('department')) {{ $errors->first('department') }} @endif
{!! Form::text('name', null, ['class'=>'form-control', 'placeholder' =>'Employee Name']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::close() !!}
{!! Form::open(['method'=>'POST','action' => 'TaskSettingsController@addDepartment']) !!}
{!! Form::text('department_name', null, ['class'=>'form-control', 'placeholder' =>'Department Name']) !!} @if ($errors->has('department_name')) {{ $errors->first('department_name') }} @endif
{!! Form::text('text_color', null, ['class'=>'form-control my-colorpicker', 'placeholder' =>'Font color','autocomplete'=>'off']) !!} @if ($errors->has('text_color')) {{ $errors->first('text_color') }} @endif
{!! Form::text('background_color', null, ['class'=>'form-control my-colorpicker', 'placeholder' =>'Background color','autocomplete'=>'off']) !!} @if ($errors->has('background_color')) {{ $errors->first('background_color') }} @endif
{!! Form::text('border_color', null, ['class'=>'form-control my-colorpicker', 'placeholder' =>'Border color','autocomplete'=>'off']) !!} @if ($errors->has('border_color')) {{ $errors->first('border_color') }} @endif
{!! Form::close() !!}

Font Size Settings for Timeline and Calendar

{!! Form::open(['method'=>'PUT','action' => 'SettingsController@calendar_font_size']) !!}
{!! Form::label('calendar_font_size', 'Calendar Font Size') !!}
{!! Form::number('calendar_font_size', $calendar_font_size, ['class'=>'form-control', 'min'=>'10','max'=>'50','required','placeholder'=>'eg. 12']) !!}
{!! Form::close() !!}
{!! Form::open(['method'=>'PUT','action' => 'SettingsController@timeline_font_size']) !!}
{!! Form::label('timeline_font_size', 'Timeline Font Size') !!}
{!! Form::number('timeline_font_size', $timeline_font_size, ['class'=>'form-control', 'min'=>'10','max'=>'50','required','placeholder'=>'eg. 12']) !!}
{!! Form::close() !!}
{!! Form::open(['method'=>'PUT','action' => 'SettingsController@department_font_size']) !!}
{!! Form::label('department_font_size', 'Department Font Size') !!}
{!! Form::number('department_font_size', $department_font_size, ['class'=>'form-control', 'min'=>'10','max'=>'50','required','placeholder'=>'eg. 12']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop