@extends("layouts.${SKIN_NAME}.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("layouts.${SKIN_NAME}.profile.fields")
{!! Form::close() !!}
@endsection