]> BookStack Code Mirror - bookstack/blob - resources/views/users/delete.blade.php
Merge branch 'diff' of git://github.com/younes0/BookStack into younes0-diff
[bookstack] / resources / views / users / delete.blade.php
1 @extends('base')
2
3 @section('content')
4
5     <div class="container small" ng-non-bindable>
6         <h1>Delete User</h1>
7         <p>This will fully delete this user with the name '<span class="text-neg">{{ $user->name }}</span>' from the system.</p>
8         <p class="text-neg">Are you sure you want to delete this user?</p>
9
10         <form action="{{ baseUrl("/settings/users/{$user->id}") }}" method="POST">
11             {!! csrf_field() !!}
12             <input type="hidden" name="_method" value="DELETE">
13             <a href="{{ baseUrl("/settings/users/{$user->id}") }}" class="button muted">Cancel</a>
14             <button type="submit" class="button neg">Confirm</button>
15         </form>
16     </div>
17
18 @stop