@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-records.index') => _trans('common.Tardy Record'), '#' => @$data['title'], ]) !!}
@csrf @method('PUT')
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('user_id')) {{ $errors->first('user_id') }} @endif
@if ($errors->has('tardy_rule_id')) {{ $errors->first('tardy_rule_id') }} @endif
@if ($errors->has('tardy_type')) {{ $errors->first('tardy_type') }} @endif
@if ($errors->has('tardy_minutes')) {{ $errors->first('tardy_minutes') }} @endif
@if ($errors->has('is_emergency')) {{ $errors->first('is_emergency') }} @endif
@if ($errors->has('is_notified')) {{ $errors->first('is_notified') }} @endif
@if ($errors->has('reason')) {{ $errors->first('reason') }} @endif
{{ _trans('common.Cancel') }}
@endsection