@extends('layouts.master') @section('content')
@lang('descriptions.filiale-backgrounds.crud')
@if (isset($filiale_background)) {!! Form::model($filiale_background, ['route' => ['filiale-backgrounds.update', $filiale_background->id], 'class' => 'filiale-backgrounds-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!} @else {!! Form::open(['route' => 'filiale-backgrounds.store', 'class' => 'filiale-backgrounds-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!} @endif
{!! Form::checkbox('go-to-preview', 1, null, ['id' => 'go-to-preview', 'class' => 'hidden']) !!} {!! Form::checkbox('approval', 1, null, ['id' => 'approval', 'class' => 'hidden']) !!}
Überschrift:
{!! Form::text('title', null, ['class' => 'filiale-background-title form-control', 'placeholder' => '...']) !!}
Filiale Background:
@include ('partials.approvers')
@include ('partials.simple_action_btns') {!! Form::close() !!}
@endsection @section('back_button') Zurück @endsection