@extends('layouts.app') @section('title', 'Upload Attendance | ') @section('content')
@csrf

Upload Attendance Sheet (Sample Sheet)

Last month @if($last_month!=null) {{$last_month->month.', '.$last_month->year}} uploaded, Updated by: Ankur Sri @else Sheet not uploaded @endif

(Please select a month) @if ($errors->has('month'))

{{ $errors->first('month') }}

@endif
(Please select a month) @if ($errors->has('month'))

{{ $errors->first('month') }}

@endif
@if ($errors->has('file'))

{{ $errors->first('file') }}

@endif

Tips: If you have a Excel file please convert it to .csv format. Download sample file.

{!! Form::close() !!}
@stack('scripts') @endsection