mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
4b0c4e621a
Also changed up how base URL setting was being done by manipulating incoming request URLs instead of altering then on generation.
46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
<div class="container small">
|
|
|
|
<div class="py-m">
|
|
@include('settings.navbar', ['selected' => 'roles'])
|
|
</div>
|
|
|
|
<div class="card content-wrap auto-height">
|
|
<h1 class="list-heading"> {{ trans('settings.role_delete') }}</h1>
|
|
|
|
<p>{{ trans('settings.role_delete_confirm', ['roleName' => $role->display_name]) }}</p>
|
|
|
|
<form action="{{ url("/settings/roles/delete/{$role->id}") }}" method="POST">
|
|
{!! csrf_field() !!}
|
|
<input type="hidden" name="_method" value="DELETE">
|
|
|
|
@if($role->users->count() > 0)
|
|
<div class="form-group">
|
|
<p>{{ trans('settings.role_delete_users_assigned', ['userCount' => $role->users->count()]) }}</p>
|
|
@include('form.role-select', ['options' => $roles, 'name' => 'migration_role_id'])
|
|
</div>
|
|
@endif
|
|
|
|
<div class="grid half v-center">
|
|
<div>
|
|
<p class="text-neg">
|
|
<strong>{{ trans('settings.role_delete_sure') }}</strong>
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<div class="form-group text-right">
|
|
<a href="{{ url("/settings/roles/{$role->id}") }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
<button type="submit" class="button primary">{{ trans('common.confirm') }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
@stop
|