2018-02-04 08:18:09 +08:00
|
|
|
@extends("layouts.${SKIN_NAME}.app")
|
2017-12-25 02:12:26 +08:00
|
|
|
@section('title', 'edit profile')
|
2018-02-04 08:18:09 +08:00
|
|
|
|
2017-12-25 02:12:26 +08:00
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<h2 class="description">edit your profile</h2>
|
|
|
|
@include('flash::message')
|
|
|
|
{!! Form::model($user, ['route' => ['frontend.profile.update', $user->id], 'method' => 'patch']) !!}
|
2018-02-04 08:18:09 +08:00
|
|
|
@include("layouts.${SKIN_NAME}.profile.fields")
|
2017-12-25 02:12:26 +08:00
|
|
|
{!! Form::close() !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|