@extends('layouts.app') @section('content')
{{ Form::model($client, [ 'route' => [ 'clients.profile.update' ], 'class' => 'form', 'method' => 'PUT' ]) }}
My Account

Please note an admin will be notified of any changes and new email addresses will require validation.

{{ Form::submit('Update Details', ['class' => 'btn btn--primary form__btn']) }}
@include('clients.form') {{ Form::close() }}
@endsection