@extends('common::layouts.master') @section('appearance') active @endsection @section('appearance-aria-expanded') aria-expanded=true @endsection @section('theme_option') active @endsection @section('appearance-show') show @endsection @section('content')
@if(session('error'))
{{session('error')}}
@endif @if(session('success'))
{{session('success')}}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::open(['route'=>'update-theme-option','method' => 'post']) !!}

{{ __('update_theme') }}

{!! Form::close() !!} {!! Form::open(['route' => 'update-settings', 'method' => 'post', 'enctype' => 'multipart/form-data', 'id' => 'update-settings']) !!}
{{ __('preloader_option') }}
{!! Form::close() !!}
@endsection