snipe-it/resources/views/settings/api.blade.php

27 lines
633 B
PHP
Raw Normal View History

2017-01-11 01:02:32 -08:00
@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ 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')
@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>
@else
<p class="text-warning"><i class="fas fa-lock" aria-hidden="true"></i> {{ trans('general.feature_disabled') }}</p>
@endif
2017-01-11 01:02:32 -08:00
@stop
@section('moar_scripts')
2017-07-07 23:44:48 -07:00
@endsection