blade file style changes..
This commit is contained in:
@ -5,7 +5,9 @@
|
||||
@section('content')
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h2 class="mb-0 text-danger"><i class="fa fa-exclamation-triangle text-danger"></i> {{ trans('errors.header.403') }}</h2>
|
||||
<h2 class="mb-0 text-danger">
|
||||
<i class="fa fa-exclamation-triangle text-danger"></i> {{ trans('errors.header.403') }}
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
@ -13,7 +15,7 @@
|
||||
|
||||
@php $landing_page = user() ? route(user()->landing_page) : route('login'); @endphp
|
||||
|
||||
<a href="{{ $landing_page }}" class="btn btn-success header-button-top"><span class="fa fa-tachometer-alt"></span> {{ trans('general.go_to_dashboard') }}</a>
|
||||
<a href="{{ $landing_page }}" class="btn btn-success">{{ trans('general.go_to_dashboard') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
@ -5,7 +5,9 @@
|
||||
@section('content')
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h2 class="mb-0 text-warning"><i class="fa fa-exclamation-triangle text-warning"></i> {{ trans('errors.header.404') }}</h2>
|
||||
<h2 class="mb-0 text-warning">
|
||||
<i class="fa fa-exclamation-triangle text-warning"></i> {{ trans('errors.header.404') }}
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
@ -13,7 +15,7 @@
|
||||
|
||||
@php $landing_page = user() ? route(user()->landing_page) : route('login'); @endphp
|
||||
|
||||
<a href="{{ $landing_page }}" class="btn btn-success header-button-top"><span class="fa fa-tachometer-alt"></span> {{ trans('general.go_to_dashboard') }}</a>
|
||||
<a href="{{ $landing_page }}" class="btn btn-success">{{ trans('general.go_to_dashboard') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
@ -5,7 +5,9 @@
|
||||
@section('content')
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h2 class="mb-0 text-danger"><i class="fa fa-exclamation-triangle text-danger"></i> {{ trans('errors.header.500') }}</h2>
|
||||
<h2 class="mb-0 text-danger">
|
||||
<i class="fa fa-exclamation-triangle text-danger"></i> {{ trans('errors.header.500') }}
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
@ -13,7 +15,7 @@
|
||||
|
||||
@php $landing_page = user() ? route(user()->landing_page) : route('login'); @endphp
|
||||
|
||||
<a href="{{ $landing_page }}" class="btn btn-success header-button-top"><span class="fa fa-tachometer-alt"></span> {{ trans('general.go_to_dashboard') }}</a>
|
||||
<a href="{{ $landing_page }}" class="btn btn-success">{{ trans('general.go_to_dashboard') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
Reference in New Issue
Block a user