bztang-admin/resources/views/admin/user/edit.blade.php

150 lines
6.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>用户 | Yunshop</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="/dist/css/AdminLTE.min.css">
<!-- iCheck -->
<link rel="stylesheet" href="/plugins/iCheck/square/blue.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="/libs/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="hold-transition login-page">
<div class="main animsition">
<div class="container-fluid">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">添加用户</h3>
</div>
<div class="panel-body">
<form class="form-horizontal" role="form" method="POST" action="/admin/user/{{ $id }}/edit">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<input type="hidden" name="id" value="{{ $id }}">
@if (count($errors) > 0)
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>出错了!</strong>
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
<div class="form-group">
<label for="tag" class="col-md-3 control-label">用户名</label>
<div class="col-md-5">
<input type="text" class="form-control" name="name" id="tag" value="{{ $name }}" autofocus>
</div>
</div>
<div class="form-group">
<label for="tag" class="col-md-3 control-label">邮箱</label>
<div class="col-md-5">
<input type="text" class="form-control" name="email" id="tag" value="{{ $email }}" autofocus>
</div>
</div>
<div class="form-group">
<label for="tag" class="col-md-3 control-label">密码</label>
<div class="col-md-5">
<input type="password" class="form-control" name="password" id="tag" value="" autofocus>
</div>
</div>
<div class="form-group">
<label for="tag" class="col-md-3 control-label">密码确认</label>
<div class="col-md-5">
<input type="password" class="form-control" name="password_confirmation" id="tag" value="" autofocus>
</div>
</div>
<div class="form-group">
<label for="tag" class="col-md-3 control-label">角色列表</label>
@if(isset($id)&&$id==1)
<div class="col-md-4" style="float:left;padding-left:20px;margin-top:8px;"><h2>超级管理员</h2></div>
@else
<div class="col-md-6">
@foreach($rolesAll as $v)
<div class="col-md-4" style="float:left;padding-left:20px;margin-top:8px;">
<span class="checkbox-custom checkbox-default">
<i class="fa"></i>
<input class="form-actions"
@if(in_array($v['id'],$roles))
checked
@endif
id="inputChekbox{{$v['id']}}" type="Checkbox" value="{{$v['id']}}"
name="roles[]"> <label for="inputChekbox{{$v['id']}}">
{{$v['name']}}
</label> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span>
</div>
@endforeach
</div>
@endif
</div>
<div class="form-group">
<div class="col-md-7 col-md-offset-3">
<button type="submit" class="btn btn-primary btn-md">
<i class="fa fa-plus-circle"></i>
保存
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.login-box -->
<!-- jQuery 2.2.0 -->
<script src="/plugins/jQuery/jQuery-2.2.0.min.js"></script>
<!-- Bootstrap 3.3.6 -->
<script src="/bootstrap/js/bootstrap.min.js"></script>
<!-- iCheck -->
<script src="/plugins/iCheck/icheck.min.js"></script>
<script>
$(function () {
$('input').iCheck({
checkboxClass: 'icheckbox_square-blue',
radioClass: 'iradio_square-blue',
increaseArea: '20%' // optional
});
});
</script>
</body>
</html>