@extends('layouts.app', [ 'title' => trans('settings.layout.title'), 'description' => trans('settings.layout.description'), 'breadcrumbs' => false ]) @inject('pagination', App\Services\PaginationService) @section('content') @include('partials.errors')
@include('settings.menu', ['active' => 'layout'])
{!! Form::model(auth()->user(), ['method' => 'PATCH', 'route' => ['settings.layout']]) !!}
{!! Form::select('theme', [ '' => trans('profiles.theme.themes.default'), 'dark' => trans('profiles.theme.themes.dark'), 'future' => trans('profiles.theme.themes.future'), 'midnight' => trans('profiles.theme.themes.midnight') ], null, ['class' => 'form-control']) !!}
{!! Form::select('default_pagination', $pagination->options(), null, ['class' => 'form-control']) !!}
{!! Form::select('date_format', [ 'Y-m-d' => 'Y-m-d', 'd.m.Y' => 'd.m.Y', 'd-m-y' => 'd-m-y', 'm/d/Y' => 'm/d/Y' ], null, ['class' => 'form-control']) !!}
{!! Form::hidden('default_nested', 0) !!}

{{ trans('profiles.settings.hints.default_nested') }}

{!! Form::close() !!}
@endsection