3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-08-24 06:10:01 +00:00
Files
snipe-it/resources/views/settings/ldap-wizard.blade.php
snipe ead224bf34 Added route and base livewire blade
TODO: Remove the old route once this is vetted and finalized
2026-07-26 23:58:02 +01:00

17 lines
346 B
PHP

@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ trans('admin/settings/general.ldap_ad') }}
@parent
@stop
{{-- Page content --}}
@section('content')
<div class="row">
<div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2">
<livewire:ldap-settings />
</div>
</div>
@stop