@extends('app') @section('title', __('Edit Profile')) @section('content')

{{ __('Edit Your Profile') }}

@include('flash::message') {{ Form::model($user, ['route' => ['frontend.profile.update', $user->id], 'files' => true, 'method' => 'patch']) }} @include("profile.fields") {{ Form::close() }}
@endsection