2017-01-11 01:02:32 -08:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2017-01-11 04:05:32 -08:00
|
|
|
OAuth API Settings
|
2017-01-11 01:02:32 -08:00
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- 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">
|
|
|
|
<passport-clients></passport-clients>
|
|
|
|
<passport-authorized-clients></passport-authorized-clients>
|
|
|
|
</div>
|
2017-01-25 05:03:30 -08:00
|
|
|
@else
|
|
|
|
<p class="help-block">{{ trans('general.feature_disabled') }}</p>
|
|
|
|
@endif
|
|
|
|
|
2017-01-11 01:02:32 -08:00
|
|
|
@stop
|
2017-01-25 21:29:23 -08:00
|
|
|
|
|
|
|
@section('moar_scripts')
|
|
|
|
<script>
|
|
|
|
new Vue({
|
|
|
|
el: "#app",
|
|
|
|
});
|
|
|
|
</script>
|
2017-07-07 23:44:48 -07:00
|
|
|
@endsection
|