500.blade.php 527 B

123456789101112131415
  1. @extends('frontend.layouts.app')
  2. @section('content')
  3. <section class="text-center py-6">
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-lg-6 mx-auto">
  7. <img src="{{ static_asset('assets/img/500.svg') }}" class="img-fluid w-75">
  8. <h1 class="h2 fw-700 mt-5">{{ translate("Something went wrong!") }}</h1>
  9. <p class="fs-16 opacity-60">{{ translate("Sorry for the inconvenience, but we're working on it.") }} <br> {{ translate("Error code") }}: 500</p>
  10. </div>
  11. </div>
  12. </div>
  13. </section>
  14. @endsection