styling #102
This commit is contained in:
parent
163ba37cbd
commit
0d5e051104
@ -27,8 +27,6 @@ return [
|
||||
'download_pdf' => 'Download PDF',
|
||||
'send_mail' => 'Send Email',
|
||||
|
||||
'create_vendor' => 'Vendor Create',
|
||||
|
||||
'status' => [
|
||||
'draft' => 'Draft',
|
||||
'received' => 'Received',
|
||||
|
@ -27,8 +27,6 @@ return [
|
||||
'download_pdf' => 'Download PDF',
|
||||
'send_mail' => 'Send Email',
|
||||
|
||||
'create_customer' => 'Customer Create',
|
||||
|
||||
'status' => [
|
||||
'draft' => 'Draft',
|
||||
'sent' => 'Sent',
|
||||
|
@ -14,7 +14,7 @@
|
||||
<div class="input-group-addon"><i class="fa fa-user"></i></div>
|
||||
{!! Form::select('vendor_id', $vendors, null, array_merge(['class' => 'form-control', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.vendors', 1)])])) !!}
|
||||
<span class="input-group-btn">
|
||||
<button type="button" onclick="createVendor();" class="btn btn-success">{{ trans('bills.create_vendor') }}</button>
|
||||
<button type="button" onclick="createVendor();" class="btn btn-primary">{{ trans('general.add_new') }}</button>
|
||||
</span>
|
||||
</div>
|
||||
{!! $errors->first('vendor_id', '<p class="help-block">:message</p>') !!}
|
||||
|
@ -14,7 +14,7 @@
|
||||
<div class="input-group-addon"><i class="fa fa-user"></i></div>
|
||||
{!! Form::select('customer_id', $customers, null, array_merge(['class' => 'form-control', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.customers', 1)])])) !!}
|
||||
<span class="input-group-btn">
|
||||
<button type="button" onclick="createCustomer();" class="btn btn-success">{{ trans('invoices.create_customer') }}</button>
|
||||
<button type="button" onclick="createCustomer();" class="btn btn-primary">{{ trans('general.add_new') }}</button>
|
||||
</span>
|
||||
</div>
|
||||
{!! $errors->first('customer_id', '<p class="help-block">:message</p>') !!}
|
||||
|
Loading…
x
Reference in New Issue
Block a user