| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- @extends('admin/public/layout')
- @section('title')
- 新建用户
- @endsection
- @section('content')
- <section class="content-header">
- <h1>
- 新建用户
- <small>添加新用户</small>
- </h1>
- <ol class="breadcrumb">
- <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
- <li><a href="#">Tables</a></li>
- <li class="active">Simple</li>
- </ol>
- </section>
- <section class="content">
- <div class="row">
- <div class="col-xs-12">
- @include('admin/public/error')
- <div class="box box-default">
- <form role="form" name="userForm" method="POST" action="{{ route('admin.user.store') }}">
- <input type="hidden" name="_token" value="{{ csrf_token() }}">
- <div class="box-body">
- <div class="form-group @if ($errors->has('name')) has-error @endif">
- <label>用户名</label>
- <input type="text" name="name" class="form-control " placeholder="用户名" value="{{ old('name') }}">
- @if ($errors->has('name')) <p class="help-block">{{ $errors->first('name') }}</p> @endif
- </div>
- <div class="form-group @if ($errors->has('email')) has-error @endif">
- <label>邮箱</label>
- <input type="email" name="email" class="form-control" placeholder="邮箱" value="{{ old('email') }}">
- @if ($errors->has('email')) <p class="help-block">{{ $errors->first('email') }}</p> @endif
- </div>
- <div class="form-group @if ($errors->has('password')) has-error @endif">
- <label>密码</label>
- <input type="text" name="password" class="form-control" placeholder="密码" value="{{ old('password','') }}">
- @if ($errors->has('password')) <p class="help-block">{{ $errors->first('password') }}</p> @endif
- </div>
- <div class="form-group">
- <label>角色</label>
- <select class="form-control" name="role_id">
- @foreach( $roles as $role )
- <option value="{{ $role->id }}" @if($role->id ==2) selected @endif > {{ $role->name }}</option>
- @endforeach
- </select>
- </div>
- </div>
- <div class="box-footer">
- <button type="submit" class="btn btn-primary">保存</button>
- </div>
- </form>
- </div>
- </div>
- </div>
- </section>
- @endsection
- @section('script')
- <script type="text/javascript">
- set_active_menu('manage_user',"{{ route('admin.user.index') }}");
- </script>
- @endsection
|