13 lines
434 B
PHP
13 lines
434 B
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
<x-dashboard.breadcumb :title="$title" />
|
|
|
|
{{ 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() }}
|
|
|
|
</div>
|
|
|
|
@endsection
|