500.blade.php 335 B

12345678910
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container">
  4. <div class="error-page py-5 my-5 text-center">
  5. <h3 class="font-weight-bold">Something went wrong</h3>
  6. <p class="lead">We cannot process your request at this time, please try again later. <a href="/">Go back to Pixelfed.</a></p>
  7. </div>
  8. </div>
  9. @endsection