@extends('layouts.app') @section('title', 'Editar recordatorio') @section('content')
Volver

Editar recordatorio

@if($reminder->link)

Para el enlace {{ $reminder->link->display_title }}.

@endif @if(! $reminder->isEditable())
Este recordatorio no se puede editar porque ya está {{ \App\Models\Reminder::statusLabel($reminder->status) }}.
@endif
@csrf @method('PUT')
Título
Fecha y hora
Guardar Cancelar
@endsection