homeList.blade.php 527 B

123456789101112131415161718192021
  1. @extends('layouts.base')
  2. @section('title')
  3. Мой календарь
  4. @stop
  5. @section('content')
  6. <div class="flex-row">
  7. <form method="POST" action="/logout" class="inline-flex">
  8. @csrf
  9. <button class="btn-primary" href="/logout" onclick="event.preventDefault();
  10. this.closest('form').submit();">
  11. Logout
  12. </button>
  13. </form>
  14. </div>
  15. @include('layouts.taskList')
  16. @include('layouts.taskForm')
  17. @stop