@extends('admin.layouts.main') @section('title') @if($edit) Edit Reminder @else Add Reminder @endif @endsection @section('content')
@include("admin.common.sidebar")
@csrf
@if($edit)

{{ @trans('calendar.edit_reminder') }}

@else

{{ @trans('calendar.add_reminder') }}

@endif
@endsection @push('pageJs') {!! JsValidator::formRequest('App\Http\Requests\Calendar\StoreReminder', '#storeReminder') !!} @endpush