@extends ('core.layouts.app') @section ('title', trans('business.company_settings')) @section('content')

{{ trans('business.company_settings') }}

{{ Form::open(['route' => 'biller.business.update_settings', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post','files' => true, 'id' => 'manage-company']) }}
{{ Form::label( 'cname', trans('hrms.company'),['class' => 'col control-label']) }}
{{ Form::text('cname', @$company['cname'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.company')]) }}
{{ Form::label( 'address', trans('hrms.address_1'),['class' => 'col control-label']) }}
{{ Form::text('address', @$company['address'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.address_1')]) }}
{{ Form::label( 'city', trans('hrms.city'),['class' => 'col control-label']) }}
{{ Form::text('city', @$company['city'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.city')]) }}
{{ Form::label( 'region', trans('hrms.state'),['class' => 'col control-label']) }}
{{ Form::text('region', @$company['region'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.state')]) }}
{{ Form::label( 'country', trans('hrms.country'),['class' => 'col control-label']) }}
{{ Form::text('country', @$company['country'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.country')]) }}
{{ Form::label( 'postbox', trans('hrms.postal'),['class' => 'col control-label']) }}
{{ Form::text('postbox', @$company['postbox'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.postal')]) }}
{{ Form::label( 'taxid', trans('hrms.tax_id'),['class' => 'col control-label']) }}
{{ Form::text('taxid', @$company['taxid'], ['class' => 'form-control box-size', 'placeholder' => trans('hrms.tax_id')]) }}
{{ Form::label( 'email', trans('general.email'),['class' => 'col control-label']) }}
{{ Form::text('email', @$company['email'], ['class' => 'form-control box-size', 'placeholder' => trans('general.email')]) }}
{{ Form::label( 'phone', trans('general.phone'),['class' => 'col control-label']) }}
{{ Form::text('phone', @$company['phone'], ['class' => 'form-control box-size', 'placeholder' => trans('general.phone')]) }}
{!! $fields_data !!}
{{ link_to_route('biller.dashboard', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }} {{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-primary btn-md']) }}
{{ Form::label( 'icon', trans('business.favicon'),['class' => 'control-label']) }}


Business favicon

{!! Form::file('icon', array('class'=>'input mb-1' )) !!} {{trans('hrms.blank_field')}}
only .ico format accepted

{{ Form::label( 'theme_logo', trans('business.theme_logo'),['class' => 'control-label']) }}


Business header logo

{!! Form::file('theme_logo', array('class'=>'input mb-1' )) !!} {{trans('hrms.blank_field')}}
only jpg|png format accepted.
Recommended dimensions are 80x80. Use small size file - it will load quickly.

{{ Form::label( 'logo', trans('business.invoice_logo'),['class' => 'control-label']) }}


Business Logo

{!! Form::file('logo', array('class'=>'input mb-2' )) !!} {{trans('hrms.blank_field')}}
only jpg|png format accepted.
Recommended dimensions are 500x280. Use small size file - it will load quickly.
{{ Form::close() }}
@endsection