{!! Form::label('title', trans('lang.website_title'), ['class' => 'col-md-2 control-label text-right']) !!}
{!! Form::text('title', setting('title'), ['class' => 'form-control', 'placeholder' => trans('lang.website_title_placeholder')]) !!}
{{ trans('lang.website_title_help') }}
{!! Form::label('description', trans('lang.website_description'), ['class' => 'col-md-2 control-label text-right']) !!}
{!! Form::textarea('description', setting('description'), ['class' => 'form-control', 'placeholder' => trans('lang.website_description_placeholder')]) !!}
{{ trans('lang.website_description_help') }}
{!! Form::file('image', ['class' => 'dropify', 'data-default-file' => isset($upload) && $upload->hasMedia() ? $upload->getFirstMediaUrl() : '']) !!}
{{ trans('lang.website_logo_help') }}