@section('page_name') Create new supplier @stop @section('content') {{ Form::open(array('route' => 'suppliers.store', 'method' => 'POST')) }}
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') }}
Payment Terms {{ Form::select('paymentTerms', PaymentTerm::lists('type', 'id')) }}
Payment Type {{ Form::select('paymentType', PayMethod::lists('type', 'id')) }}
Payment Terms {{ Form::select('currency', Currency::lists('name', 'id')) }}
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(' Create supplier', array('class' => 'btn btn-green fr', 'type' => 'submit'))}}
{{ Form::close() }} @stop