@extends('admin/public/layout') @section('css') @endsection @section('title') 编辑用户 @endsection @section('content')

编辑用户 编辑用户信息

基本资料

@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
         
@if ($errors->has('birthday'))

{{ $errors->first('birthday') }}

@endif
@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
(禁用后用户将不能访问网站)
@foreach(trans_common_status('all') as $key => $status)    @endforeach
@endsection @section('script') @endsection