@extends('layouts.app')
@section('content')
{{ html()->modelForm($reminder, 'PUT')->route('reminder.update', $reminder->id)->class(['needs-validation'])->attributes(['novalidate', 'enctype' => 'multipart/form-data'])->open() }}
@include('reminder::reminder.partials.action')
{{ html()->closeModelForm() }}
@endsection