flexisip-account-manager/flexiapi/resources/views/errors/minimal.blade.php
Timothée Jaussoin d0cce36eeb Add a nice layout for the common errors, fix #5
Update the dependencies
Remove some old codes
Bump the package version
Move the throttle limit from 60 to 600
2021-05-03 12:07:57 +02:00

15 lines
No EOL
304 B
PHP

@extends('layouts.main')
@section('content')
<h2 class="text-center pt-5">@yield('code') - @yield('title')</h2>
<p class="text-center">
@yield('message')
<br />
<a class="btn btn-secondary mt-5" href="{{ route('account.home') }}">
Go back to the homepage
</a>
</p>
@endsection