@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-request.index') => _trans('common.Tardy Appeal'), '#' => @$data['title'], ]) !!}
@csrf
@if ($errors->has('request_date')) {{ $errors->first('request_date') }} @endif
@if ($errors->has('reason')) {{ $errors->first('reason') }} @endif
@if ($errors->has('attachment')) {{ $errors->first('attachment') }} @endif
{{ _trans('common.Cancel') }}
@endsection