Customer Records
{!! Form::text('name', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('name', '

:message

') !!}
{!! Form::text('company_name', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('company_name', '

:message

') !!}
{!! Form::text('landLine_no', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('landLine_no', '

:message

') !!}
{!! Form::text('phone_no', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('phone_no', '

:message

') !!}
{!! Form::text('fax_no', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('fax_no', '

:message

') !!}
{!! Form::text('email', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('email', '

:message

') !!}
{!! Form::text('website', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('website', '

:message

') !!}
{!! Form::select('status', ['Inactive', 'Active'], null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('status', '

:message

') !!}
{!! Form::submit(isset($submitButtonText) ? $submitButtonText : 'Create', ['class' => 'btn green']) !!}