2018-03-12 07:00:42 +08:00
|
|
|
@extends('app')
|
2018-05-18 06:03:30 +08:00
|
|
|
@section('title', trans('frontend.profile.editprofile'))
|
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">
|
2018-05-18 06:03:30 +08:00
|
|
|
<h2 class="description">@lang('frontend.profile.edityourprofile')</h2>
|
2017-12-25 02:12:26 +08:00
|
|
|
@include('flash::message')
|
2018-05-01 09:25:09 +08:00
|
|
|
{{ Form::model($user, ['route' => ['frontend.profile.update', $user->id], 'files' => true, 'method' => 'patch']) }}
|
2018-03-12 07:00:42 +08:00
|
|
|
@include("profile.fields")
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::close() }}
|
2017-12-25 02:12:26 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|