@extends('layouts.master')
@section('page_title', 'Edit Client')
@section('content')
{{ Form::page_header("Edit Client", "business") }}
{{ Form::open(['url' => action('BusinessController@post_edit_org_client',compact('business', 'fuse_org_client'))]) }}
@include('business._client_fields', compact('fuse_org_client'))
{{ Form::button_save() }}
{{ Form::button_link('Cancel', action('BusinessController@org_clients', compact('business'))) }}
@endsection
@section('page_style')
@endsection