{!! 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() !!}
{!! Form::open(['method'=>'PUT','action' => 'SettingsController@calendar_font_size']) !!}
{!! Form::close() !!}
{!! Form::open(['method'=>'PUT','action' => 'SettingsController@timeline_font_size']) !!}
{!! Form::close() !!}
{!! Form::open(['method'=>'PUT','action' => 'SettingsController@department_font_size']) !!}
{!! Form::close() !!}
@stop
@section('footer')
@stop