@extends('layouts.admin') @section('content') {{--
--}}
{{ csrf_field() }}
General Settings
@include('image::partials.input', [ 'input' => 'logo_id', 'value' => old('logo_id', $site->logo_id ?? null) ])
@include('image::partials.input', [ 'input' => 'favicon_id', 'value' => old('favicon_id', $site->favicon_id ?? null) ]) Must be square. Recommended size: 128 x 128px.
@include('image::partials.input', [ 'input' => 'default_image_id', 'value' => old('default_image_id', $site->default_image_id ?? null) ]) This will be used as a fallback when an image is needed but not set.
discourage_search) checked @endif>
discourage_search) checked @endif>
{{--
Formatting
{{ $site->date_format }} {{ dateformat_create_inputs('date_format', $site->date_format) }}
--}}
Social Media
{{--
--}}
Services
Hint: You can specifiy multiple by using the comma seperator, e.g. 'admin@website.com, sales@website.com'
{{--
--}}
{{--
--}}
Forms
@if(is_array($referrers)) @foreach($referrers as $referrer) {{ $referrer }} @endforeach @endif
{{-- Banner --}}
Banner
@include('admin.banners.editor', ["componentable" => $site, 'disable_default' => 1])
{{-- --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection