@extends('layouts.master')
@section('page_title', 'Manual Contact')
@section('content')
{{ Form::page_header("New Contact", "business") }}
{{ Form::open(['url' => action('BusinessController@post_manual_lead',compact('business', 'business_user')), 'id' => 'new_lead_form']) }}
@if(isset($email_added))
{{ Form::label_title('Successfully added ' . $email_added, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
@endif
{{ Form::button_link('Back To All Contacts', action('BusinessController@org_clients', compact('business')), 'back_to_clients_btn') }}
{{ Form::hidden('add_another', 0, ['id' => 'add_another']) }}
@include('business._client_fields', compact('fuse_org_client'))
{{ Form::button_save() }}
{{ Form::button_ex('Save & Add Another', 'save_and_add_another()', 'save_new_lead') }}
{{ Form::button_link('Cancel', action('BusinessController@org_clients', compact('business'))) }}
{{ Form::close() }}
@endsection
@section('page_script')
@endsection
@section('page_style')
@endsection