Your ROOT_URL in app.ini is http://159.89.207.79:3000/ but you are visiting http://9.cron.my.id:3000/tribikram/AplusAgency/blame/branch/aplus%2338/resources/views/errors/error.blade.php
You should set ROOT_URL correctly, otherwise the web may not work correctly.
@if ($errors->any())
< div class = "alert alert-danger" >
< ul >
@foreach ($errors->all() as $error)
< li > {{ $error }}< / li >
@endforeach
< / ul >
< / div >
@endif
@if (isset($custom_errors))
< div class = "alert alert-danger" >
<!-- <button type="button" class="close" data - dismiss="alert" aria - label="Close">
< span aria-hidden = "true" > × < / span >
< / button > -->
< ul >
@foreach ($custom_errors as $error)
< li > {{ $error }}< / li >
@endforeach
< / ul >
< / div >
@endif
@if(session()->has('custom_error'))
< div class = "alert alert-danger" >
< button type = "button" class = "close" data-dismiss = "alert" aria-label = "Close" >
< span aria-hidden = "true" > × < / span >
< / button >
< strong > Error!< / strong > {{ session()->get('custom_error') }}
{{--< button type = "button" class = "close" data-dismiss = "modal" > × < / button > --}}
< / div >
@endif