@extends('app') @section('title', 'edit profile') @section('content')

edit your profile

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