Nuevos cambios hechos de diseño

This commit is contained in:
ellecio2
2023-08-23 17:33:44 -04:00
parent 7a806f84ff
commit d2e9ba53ab
3485 changed files with 691106 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
@extends('frontend.layouts.app')
@section('content')
<section class="text-center py-6">
<div class="container">
<div class="row">
<div class="col-lg-6 mx-auto">
<img src="{{ static_asset('assets/img/404.svg') }}" class="mw-100 mx-auto mb-5" height="300">
<h1 class="fw-700">{{ translate('Page Not Found!') }}</h1>
<p class="fs-16 opacity-60">{{ translate('The page you are looking for has not been found on our server.') }}</p>
</div>
</div>
</div>
</section>
@endsection