2017-01-11 01:02:32 -08:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2021-11-19 06:23:48 -08:00
|
|
|
{{ trans('admin/settings/general.oauth_title') }}
|
2017-01-11 01:02:32 -08:00
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
2017-09-27 16:33:51 -07:00
|
|
|
@section('header_right')
|
|
|
|
<a href="{{ route('settings.index') }}" class="btn btn-default pull-right">{{ trans('general.back') }}</a>
|
|
|
|
@stop
|
|
|
|
|
2017-01-11 01:02:32 -08:00
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
2017-01-25 05:03:30 -08:00
|
|
|
@if (!config('app.lock_passwords'))
|
2017-07-07 23:44:48 -07:00
|
|
|
<div id="app">
|
2023-12-05 12:52:14 -08:00
|
|
|
<livewire:oauth-clients />
|
2017-07-07 23:44:48 -07:00
|
|
|
</div>
|
2017-01-25 05:03:30 -08:00
|
|
|
@else
|
2024-06-17 05:05:27 -07:00
|
|
|
<p class="text-warning"><i class="fas fa-lock" aria-hidden="true"></i> {{ trans('general.feature_disabled') }}</p>
|
2017-01-25 05:03:30 -08:00
|
|
|
@endif
|
|
|
|
|
2017-01-11 01:02:32 -08:00
|
|
|
@stop
|
2017-01-25 21:29:23 -08:00
|
|
|
|
|
|
|
@section('moar_scripts')
|
2017-07-07 23:44:48 -07:00
|
|
|
@endsection
|