@extends('backend.layouts.app') @section('title', @$data['title']) @section('style') @endsection @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), route('attendance.index') => _trans('common.Attendance'), route('tardy-rules.index') => _trans('common.Tardy Rules'), '#' => @$data['title'], ]) !!}
@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('threshold_minutes')) {{ $errors->first('threshold_minutes') }} @endif
@if ($errors->has('threshold_days')) {{ $errors->first('threshold_days') }} @endif
@if ($errors->has('deduction_days')) {{ $errors->first('deduction_days') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{ _trans('common.Cancel') }}
@endsection