@extends('layouts.app')
@section('title', __('essentials::lang.reminders'))
@section('content')
@include('essentials::layouts.nav_essentials')
@include('essentials::reminder.create')
@endsection
@section('javascript')
@php
$fullcalendar_lang_file = session()->get('user.language', config('app.locale') ) . '.js';
@endphp
@if(file_exists(public_path() . '/plugins/fullcalendar/locale/' . $fullcalendar_lang_file))
@endif
@endsection