73 lines
2.4 KiB
PHP
73 lines
2.4 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('title', trans('general.title.new', ['type' => trans_choice('general.vendors', 1)]))
|
|
|
|
@section('content')
|
|
<!-- Default box -->
|
|
<div class="box box-success">
|
|
{!! Form::open(['url' => 'expenses/vendors', 'files' => true, 'role' => 'form', 'class' => 'form-loading-button']) !!}
|
|
|
|
<div class="box-body">
|
|
{{ Form::textGroup('name', trans('general.name'), 'id-card-o') }}
|
|
|
|
{{ Form::textGroup('email', trans('general.email'), 'envelope', []) }}
|
|
|
|
{{ Form::textGroup('tax_number', trans('general.tax_number'), 'percent', []) }}
|
|
|
|
{{ Form::selectGroup('currency_code', trans_choice('general.currencies', 1), 'exchange', $currencies, setting('general.default_currency')) }}
|
|
|
|
{{ Form::textGroup('phone', trans('general.phone'), 'phone', []) }}
|
|
|
|
{{ Form::textGroup('website', trans('general.website'), 'globe',[]) }}
|
|
|
|
{{ Form::textareaGroup('address', trans('general.address')) }}
|
|
|
|
{{ Form::fileGroup('logo', trans_choice('general.pictures', 1)) }}
|
|
|
|
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
|
|
|
|
{{ Form::textGroup('reference', trans('general.reference'), 'file-text-o', []) }}
|
|
|
|
</div>
|
|
<!-- /.box-body -->
|
|
|
|
<div class="box-footer">
|
|
{{ Form::saveButtons('expenses/vendors') }}
|
|
</div>
|
|
<!-- /.box-footer -->
|
|
|
|
{!! Form::close() !!}
|
|
</div>
|
|
@endsection
|
|
|
|
@push('js')
|
|
<script src="{{ asset('public/js/bootstrap-fancyfile.js') }}"></script>
|
|
@endpush
|
|
|
|
@push('css')
|
|
<link rel="stylesheet" href="{{ asset('public/css/bootstrap-fancyfile.css') }}">
|
|
@endpush
|
|
|
|
@push('scripts')
|
|
<script type="text/javascript">
|
|
var text_yes = '{{ trans('general.yes') }}';
|
|
var text_no = '{{ trans('general.no') }}';
|
|
|
|
$(document).ready(function(){
|
|
$('#enabled_1').trigger('click');
|
|
|
|
$('#name').focus();
|
|
|
|
$("#currency_code").select2({
|
|
placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.currencies', 1)]) }}"
|
|
});
|
|
|
|
$('#logo').fancyfile({
|
|
text : '{{ trans('general.form.select.file') }}',
|
|
style : 'btn-default',
|
|
placeholder : '{{ trans('general.form.no_file_selected') }}'
|
|
});
|
|
});
|
|
</script>
|
|
@endpush
|