@extends('layouts.layout-2') @section('content')

{{ __('Einstellungen') }}

{!! Form::open(['url' => route('admin_setting_store'), 'class' => 'form-horizontal']) !!}

Vorkasse Infos

{{ Form::text('settings[prepayment-account-owner][val]', \App\Models\Setting::getContentBySlug('prepayment-account-owner'), array('class'=>'form-control')) }} {{ Form::hidden('settings[prepayment-account-owner][type]', 'text') }}
{{ Form::text('settings[prepayment-iban][val]', \App\Models\Setting::getContentBySlug('prepayment-iban'), array('class'=>'form-control')) }} {{ Form::hidden('settings[prepayment-iban][type]', 'text') }}
{{ Form::text('settings[prepayment-bic][val]', \App\Models\Setting::getContentBySlug('prepayment-bic'), array('class'=>'form-control')) }} {{ Form::hidden('settings[prepayment-bic][type]', 'text') }}
{{ Form::text('settings[prepayment-bank][val]', \App\Models\Setting::getContentBySlug('prepayment-bank'), array('class'=>'form-control')) }} {{ Form::hidden('settings[prepayment-bank][type]', 'text') }}

Rechnungen Einstellungen

{{ Form::text('settings[invoice-number][val]', \App\Models\Setting::getContentBySlug('invoice-number'), array('class'=>'form-control')) }} {{ Form::hidden('settings[invoice-number][type]', 'int') }}
{!! Form::close() !!} @endsection