22 lines
689 B
PHP
22 lines
689 B
PHP
@extends('profilelayout')
|
|
@section('content')
|
|
<h5>Oh shit! Something went wrong!</h5>
|
|
<div id="sf-resetcontent" class="sf-reset box">ihfit
|
|
<h6>Please don't send this fucking text to an admin, we have other problems.f fdfd</h6>
|
|
<?php
|
|
$iv = openssl_random_pseudo_bytes(16);
|
|
?>
|
|
@if(!env('APP_DEBUG'))
|
|
<div class="block">
|
|
{{bin2hex($iv)}}<br>
|
|
{{openssl_encrypt($exception, 'aes128', env('APP_KEY'), 0, $iv)}}
|
|
</div>
|
|
@else
|
|
<div class="block">
|
|
<pre>{{$exception}}</pre>
|
|
</div>
|
|
@endif
|
|
|
|
</div>
|
|
@endsection
|