@extends('layouts.master') @section('title') {{ __('payroll_setting') }} @endsection @section('content')

{{ __('create') }} {{ __('payroll_setting') }}

@csrf
{!! Form::text('name', null, ['required','class' => 'form-control','placeholder' => __('name')]) !!}
{!! Form::number('amount', null, ['class' => 'form-control','placeholder' => __('fixed_amount'), 'min' => '1']) !!}
{!! Form::number('percentage', null, ['class' => 'form-control','placeholder' => __('percentage'), 'min' => '1', 'max' => '100']) !!}
{{ __('Note:- Compulsory Choose one between fixed amount or percentage') }}

{{ __('list_payroll_setting') }}

{!! Form::select('filter_type', ['allowance' => __('allowances'), 'deduction' => __('deductions')], 'allowance', ['class' => 'form-control', 'id' => 'filter_type']) !!}
{{ __('id') }} {{ __('no.') }} {{ __('name') }} {{ __('amount') }} {{ __('percentage') }} {{ __('action') }}
@endsection