@extends ('core.layouts.app') @section ('title', trans('labels.backend.hrms.management') . ' | ' . trans('labels.backend.hrms.create')) @section('page-header')

{{ trans('labels.backend.hrms.management') }} {{ trans('hrms.attendance') }}

@endsection @section('content')

{{ trans('hrms.attendance') }}

@include('focus.hrms.partials.att-header-buttons')
{{ Form::open(['route' => 'biller.hrms.attendance_store', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post','files' => true, 'id' => 'create-hrm']) }}
@if(isset($payroll)) @endif
{{ Form::label( 'payer', trans('hrms.employee'),['class' => 'col-lg-12 control-label']) }}
{{ Form::text('payer', null, ['class' => 'form-control round', 'placeholder' => trans('hrms.employee'),'id'=>'payer','autocomplete'=>'off']) }}
{{ Form::label( 'note', trans('general.note'),['class' => 'col-6 control-label']) }}
{{ Form::text('note', null, ['class' => 'form-control round', 'placeholder' => trans('general.note'),'autocomplete'=>'off']) }}
{{trans('hrms.attendance_new')}}
{{ link_to_route('biller.hrms.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }} {{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'btn btn-success btn-md','id'=>'e_btn']) }}
{{ Form::hidden('payer_id', 0, ['id' => 'payer_id']) }} {{ Form::hidden('relation_id', 0, ['id' => 'relation_id']) }} {{ Form::close() }}
@endsection @section("after-scripts") @endsection