@extends('layouts.view') @section('title','Misspunch Management') @section('content') @section('links') @endsection

{{trans('lang.misspunch')}}

@if ($message = Session::get('success'))

{{ $message }}

@elseif($message = Session::get('error'))

{{$message}}

@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

:

@csrf
{{isset($misspunch) ? $misspunch->attach_file:''}}
@if($misspunch->status == auth()->id())
@endif
@endsection