@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') }}
{{--
{{ Form::textarea('settings[prepayment-info][val]', \App\Models\Setting::getContentBySlug('prepayment-info'), array('placeholder'=>__('Inhalt zur Vorkasse'), 'class'=>'form-control summernote-small', 'rows'=>10)) }} {{ Form::hidden('settings[prepayment-info][type]', 'full_text') }}
--}}
{!! Form::close() !!} @endsection