mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 14:09:43 -08:00
19 lines
408 B
PHP
19 lines
408 B
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
OAuth API Settings
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
@if (!config('app.lock_passwords'))
|
|
<passport-clients></passport-clients>
|
|
<passport-authorized-clients></passport-authorized-clients>
|
|
@else
|
|
<p class="help-block">{{ trans('general.feature_disabled') }}</p>
|
|
@endif
|
|
|
|
@stop
|