@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 @method('PUT')
@if ($errors->has('request_date')) {{ $errors->first('request_date') }} @endif
@if ($errors->has('reason')) {{ $errors->first('reason') }} @endif
@if (request('for_approve')) @if ($data['tardyRequest']->attachment_id) @else : {{ _trans('common.No File') }} @endif @else
@endif @if ($errors->has('attachment')) {{ $errors->first('attachment') }} @endif
{{ _trans('common.Cancel') }} @if (request('for_approve')) @else @endif
@endsection