|
@@ -0,0 +1,31 @@
|
|
|
+@extends('admin.meeting_invitations.view')
|
|
|
+@section('content-inner')
|
|
|
+
|
|
|
+ <h4 class='my-3'>
|
|
|
+ <div>Cancel</div>
|
|
|
+ </h4>
|
|
|
+
|
|
|
+ <form action="/post-to-api"
|
|
|
+ method="post" enctype="multipart/form-data"
|
|
|
+ class="bg-light rounded border px-3 pt-3 mr-3 mb-3">
|
|
|
+ @csrf
|
|
|
+
|
|
|
+ @if (session('message'))
|
|
|
+ <div class="alert alert-danger">{{ session('message') }}</div>
|
|
|
+ @endif
|
|
|
+
|
|
|
+ <input type="hidden" name="_uid" value="{{ $record->uid }}">
|
|
|
+ <input type="hidden" name="_api" value="/api/meetingInvitation/cancel">
|
|
|
+ <input type="hidden" name="_success" value="{{route('meeting_invitations-view', ['uid' => $record->uid])}}">
|
|
|
+ <input type="hidden" name="_return" value="{{route('meeting_invitations_SINGLE-ACTION_cancel', ['uid' => $record->uid])}}">
|
|
|
+ <div class='form-group mb-3'>
|
|
|
+<label class='control-label'>Memo</label>
|
|
|
+<input class='form-control' type='text' name='memo' value='{{ old('memo') ? old('memo') : '' }}' >
|
|
|
+</div>
|
|
|
+ <div class="form-group mb-3">
|
|
|
+ <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
|
|
|
+ <a href="{{route('meeting_invitations-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5">Cancel</a>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+
|
|
|
+@endsection
|