@extends('layouts.scaffold')
@section('title')
Edit Client|Golars Networks
@stop
@section('main')
{{ Form::model($client, array('method' => 'PATCH', 'route' => array('clients.update', $client->id), 'id' => 'editClients')) }}
-
{{ Form::label('user_autoid', 'User ID:') }}
{{ Form::text('user_autoid', $details->user_autoid, array("readonly"=>"readonly")) }}
-
{{ Form::label('company_name', 'Company Name: *') }}
{{ Form::text('company_name', $details->company_name) }}
-
{{ Form::label('company_location', 'Company Location:*') }}
{{ Form::text('company_location', $details->company_location) }}
-
{{ Form::label('company_website', 'Company Website: *') }}
{{ Form::text('company_website', $details->company_website) }}
-
{{ Form::label('fax_number', 'Fax Number: *') }}
{{ Form::text('fax_number', $details->fax_number) }}
-
{{ Form::label('accounting_contact', 'Accounting Contact: *') }}
{{ Form::text('accounting_contact', $details->accounting_contact) }}
-
{{ Form::label('accounting_phone', 'Accounting Phone: *') }}
{{ Form::text('accounting_phone', $details->accounting_phone) }}
-
{{ Form::label('company_owner', 'Company Owner: *') }}
{{ Form::text('company_owner', $details->company_owner) }}
-
{{ Form::label('contact_person', 'Contact Person: *') }}
{{ Form::text('contact_person', $details->contact_person) }}
-
{{ Form::label('contact_phone', 'Contact Phone: *') }}
{{ Form::text('contact_phone', $details->contact_phone) }}
-
{{ Form::label('user_email', 'Contact Email: *') }}
{{ Form::text('user_email', $client->user_email) }}
-
{{ Form::label('password', 'Password:') }}
{{ Form::password('password') }}
-
{{ Form::label('cpassword', 'Confirm password:') }}
{{ Form::password('cpassword') }}
-
{{ Form::label('alternate_email', 'Alternate Email: *') }}
{{ Form::text('alternate_email', $details->alternate_email) }}
-
{{ Form::label('created_at', 'Attestion Date:') }}
{{ Form::text('created_at', date('F d,Y',strtotime($client->updated_at)),array("readonly"=>"readonly")) }}
-
{{ Form::label('user_status', 'User Status:') }}
{{ Form::select('user_status', array('selectstatus' => 'Select Status', 'active' => 'Active', 'inactive' => 'Inactive'),$client->user_status) }}
-
Marteking Team
-
{{ Form::submit('Update', array('class' => 'btn btn-info')) }}
{{ link_to_route('clients.index', 'Cancel', null, array('class' => 'btn btn-info')) }}
{{ Form::close() }}
@if ($scripts = 'js/clients/edit_clients.js') @endif
@stop