@extends('layouts.app') @section('title') Employee Attendace Setting @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

Hrm Setting

@if(!empty($hrm_setting))
{{ csrf_field() }}
@if($errors->has('checkin')) {{ $errors->first('checkin') }} @endif
@if($errors->has('checkout')) {{ $errors->first('checkout') }} @endif
@if($errors->has('late_fine')) {{ $errors->first('late_fine') }} @endif
@php $offday = explode(',', $hrm_setting->weekend_day); @endphp
 
@else
{{ csrf_field() }}
@if($errors->has('checkin')) {{ $errors->first('checkin') }} @endif
@if($errors->has('checkout')) You have not entered time or entered the time after checkin. @endif
@if($errors->has('late_fine')) {{ $errors->first('late_fine') }} @endif
 
@endif
@stop @section('js') @stop