@extends('layouts.app') @section('page-title') {{ __('Reminder') }} @endsection @section('breadcrumb') @endsection @section('content')
{{ __('Reminder') }}
{{ Form::open(['method' => 'get', 'route' => 'reminder.index', 'id' => 'reminder-table', 'class' => 'attendance-date']) }}
{{ Form::label('documment', __('Document'), ['class' => 'form-label']) }} {{ Form::select('document', $documents, null, ['class' => 'form-control select2']) }}
{{ Form::label('date_range', __('Date'), ['class' => 'form-label']) }} {{ Form::text('date_range',null, ['class' => 'form-control', 'placeholder' => __('Select Date Range')]) }}
@if (Gate::check('create reminder')) @endif
{{ Form::close() }}
@endsection @push('script-page') @endpush