2017-11-30 08:01:07 +08:00
|
|
|
@extends('admin.app')
|
|
|
|
@section('title', "Edit \"$user->name\"")
|
2017-12-31 02:23:30 +08:00
|
|
|
@section('title', 'Edit '. $user->name)
|
2017-11-30 08:01:07 +08:00
|
|
|
@section('content')
|
|
|
|
<div class="card border-blue-bottom">
|
|
|
|
<div class="content">
|
2017-12-31 02:23:30 +08:00
|
|
|
@include('admin.flash.message')
|
2017-11-30 08:01:07 +08:00
|
|
|
{!! Form::model($user, ['route' => ['admin.users.update', $user->id], 'method' => 'patch']) !!}
|
|
|
|
@include('admin.users.fields')
|
|
|
|
{!! Form::close() !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|