2018-03-12 07:00:42 +08:00
|
|
|
@extends('app')
|
2018-05-19 03:52:31 +08:00
|
|
|
@section('title', __('profile.editprofile'))
|
2018-02-04 08:18:09 +08:00
|
|
|
|
2017-12-25 02:12:26 +08:00
|
|
|
@section('content')
|
2020-02-02 02:05:56 +08:00
|
|
|
<div class="row">
|
2017-12-25 02:12:26 +08:00
|
|
|
<div class="col-md-12">
|
2020-02-02 02:05:56 +08:00
|
|
|
<h2 class="description">@lang('profile.edityourprofile')</h2>
|
|
|
|
@include('flash::message')
|
|
|
|
{{ Form::model($user, ['route' => ['frontend.profile.update', $user->id], 'files' => true, 'method' => 'patch']) }}
|
|
|
|
@include("profile.fields")
|
|
|
|
{{ Form::close() }}
|
2017-12-25 02:12:26 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2017-12-25 02:12:26 +08:00
|
|
|
@endsection
|