@extends('layouts.scaffold')
@section('title')
Add Client|Golars Networks
@stop
@section('main')
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
{{ Form::open(array('route' => 'clients.store', 'id' => 'createClients')) }}
-
{{ Form::label('company_name', 'Company Name: *') }}
{{ Form::text('company_name') }}
-
{{ Form::label('company_location', 'Company Location:*') }}
{{ Form::text('company_location') }}
-
{{ Form::label('company_website', 'Company Website: *') }}
{{ Form::text('company_website') }}
-
{{ Form::label('fax_number', 'Fax Number: *') }}
{{ Form::text('fax_number') }}
-
{{ Form::label('accounting_contact', 'Accounting Contact: *') }}
{{ Form::text('accounting_contact') }}
-
{{ Form::label('accounting_phone', 'Accounting Phone: *') }}
{{ Form::text('accounting_phone') }}
-
{{ Form::label('company_owner', 'Company Owner: *') }}
{{ Form::text('company_owner') }}
-
{{ Form::label('contact_person', 'Contact Person: *') }}
{{ Form::text('contact_person') }}
-
{{ Form::label('contact_phone', 'Contact Phone: *') }}
{{ Form::text('contact_phone') }}
-
{{ Form::label('user_email', 'Contact Email: *') }}
{{ Form::text('user_email') }}
-
{{ Form::label('alternate_email', 'Alternate Email: *') }}
{{ Form::text('alternate_email') }}
-
{{ Form::label('user_status', 'User Status:') }}
{{ Form::select('user_status', array('selectstatus' => 'Select Status', 'active' => 'Active', 'inactive' => 'Inactive')) }}
-
Marteking Team
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
{{ link_to_route('clients.index', 'Cancel', null, array('class' => 'btn btn-info')) }}
{{ Form::close() }}
@if ($scripts = 'js/clients/create_clients.js') @endif
@stop