Skip to content

Commit 61d8332

Browse files
committed
make new user and view user consistent
1 parent 23dfcbd commit 61d8332

File tree

1 file changed

+18
-23
lines changed

1 file changed

+18
-23
lines changed

resources/themes/pterodactyl/admin/users/new.blade.php

Lines changed: 18 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -41,34 +41,29 @@
4141
<h3 class="box-title">Identity</h3>
4242
</div>
4343
<div class="box-body">
44-
<div class="row">
45-
<div class="form-group col-md-6">
46-
<label for="email" class="control-label">Email</label>
47-
<div>
48-
<input type="text" autocomplete="off" name="email" value="{{ old('email') }}" class="form-control" />
49-
</div>
44+
<div class="form-group">
45+
<label for="email" class="control-label">Email</label>
46+
<div>
47+
<input type="text" autocomplete="off" name="email" value="{{ old('email') }}" class="form-control" />
5048
</div>
51-
<div class="form-group col-md-6">
52-
<label for="username" class="control-label">Username</label>
53-
<div>
54-
<input type="text" autocomplete="off" name="username" value="{{ old('username') }}" class="form-control" />
55-
</div>
49+
</div>
50+
<div class="form-group">
51+
<label for="username" class="control-label">Username</label>
52+
<div>
53+
<input type="text" autocomplete="off" name="username" value="{{ old('username') }}" class="form-control" />
5654
</div>
5755
</div>
58-
<div class="row">
59-
<div class="form-group col-md-6">
60-
<label for="name_first" class="control-label">Client First Name</label>
61-
<div>
62-
<input type="text" autocomplete="off" name="name_first" value="{{ old('name_first') }}" class="form-control" />
63-
</div>
56+
<div class="form-group">
57+
<label for="name_first" class="control-label">Client First Name</label>
58+
<div>
59+
<input type="text" autocomplete="off" name="name_first" value="{{ old('name_first') }}" class="form-control" />
6460
</div>
65-
<div class="form-group col-md-6">
66-
<label for="name_last" class="control-label">Client Last Name</label>
67-
<div>
68-
<input type="text" autocomplete="off" name="name_last" value="{{ old('name_last') }}" class="form-control" />
69-
</div>
61+
</div>
62+
<div class="form-group">
63+
<label for="name_last" class="control-label">Client Last Name</label>
64+
<div>
65+
<input type="text" autocomplete="off" name="name_last" value="{{ old('name_last') }}" class="form-control" />
7066
</div>
71-
7267
</div>
7368
</div>
7469
<div class="box-footer">

0 commit comments

Comments
 (0)