Просмотр файла resources/views/admin/guestbook/reply.blade.php

Размер файла: 1.6Kb
  1. @extends('layout')
  2.  
  3. @section('title', __('guestbook.title_reply'))
  4.  
  5. @section('breadcrumb')
  6. <nav>
  7. <ol class="breadcrumb">
  8. <li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
  9. <li class="breadcrumb-item"><a href="/admin">{{ __('index.panel') }}</a></li>
  10. <li class="breadcrumb-item"><a href="/admin/guestbook">{{ __('index.guestbook') }}</a></li>
  11. <li class="breadcrumb-item active">{{ __('guestbook.title_reply') }}</li>
  12. </ol>
  13. </nav>
  14. @stop
  15.  
  16. @section('content')
  17. <div class="alert alert-info">
  18. <i class="fa fa-pencil-alt"></i>
  19. @if ($post->user_id)
  20. <b>{{ $post->user->getName() }}</b>
  21. @else
  22. <b>{{ $post->guest_name ?: setting('guestsuser') }}</b>
  23. @endif
  24.  
  25. <small class="section-date text-muted fst-italic">{{ dateFixed($post->created_at) }}</small><br>
  26. <div>{{ __('main.message') }}: {{ bbCode($post->text) }}</div>
  27. </div>
  28.  
  29. <div class="section-form mb-3 shadow">
  30. <form action="/admin/guestbook/reply/{{ $post->id }}?page={{ $page }}" method="post">
  31. @csrf
  32. <div class="mb-3{{ hasError('reply') }}">
  33. <label for="reply" class="form-label">{{ __('main.message') }}:</label>
  34. <textarea class="form-control markItUp" id="reply" rows="5" name="reply" required>{{ getInput('reply', $post->reply) }}</textarea>
  35. <div class="invalid-feedback">{{ textError('reply') }}</div>
  36. </div>
  37.  
  38. <button class="btn btn-primary">{{ __('main.write') }}</button>
  39. </form>
  40. </div>
  41. @stop