@section('page_name') Edit supplier @stop @section('page_header') @stop @section('content') {{ Form::model($supplier, array('route' => array('suppliers.update', $supplier->id), 'method' => 'PUT')) }}
Company information
Supplier code {{ Form::text('supplierCode') }}
Company name {{ Form::text('companyName') }}
Trading name {{ Form::text('tradingName') }}
Tax ID {{ Form::text('cifnif') }}
Address {{ Form::textarea('address') }}
City {{ Form::text('city') }}
Region {{ Form::text('region') }}
Postal code {{ Form::text('postalCode') }}
Country {{ Form::text('country') }}
Services {{ Form::textarea('services') }}
Contact details
Contact title {{ Form::text('contactTitle') }}
Contact name {{ Form::text('contactName') }}
Phone {{ Form::text('phone') }}
mobile {{ Form::text('mobile') }}
Fax {{ Form::text('fax') }}
Email address {{ Form::text('email') }}
Website {{ Form::text('website') }}
Bank details
Account holder {{ Form::text('accountHolder') }}
Bank name {{ Form::text('bankName') }}
Swiftcode {{ Form::text('swiftcode') }}
IBAN {{ Form::text('iban') }}
Account {{ Form::text('account') }}
{{ Form::button(' Save supplier', array('class' => 'btn btn-green fr', 'type' => 'submit'))}}
{{ Form::close() }} @stop