@extends('backEnd.master') @section('title') @lang('style.color_style') @endsection @section('mainContent')
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => ['themes.update', $theme->id], 'method' => 'PUT', 'enctype' => 'multipart/form-data']) }}

@lang('style.Edit Color Theme')

@if ($errors->has('title')) {{ @$errors->first('title') }} @endif
@if ($errors->has('background_type')) {{ $errors->first('background_type') }} @endif
@if ($errors->has('background_color')) {{ $errors->first('background_color') }} @endif
@if ($errors->has('background_image')) {{ $errors->first('background_image') }} @endif
@foreach ($theme->colors as $color)
@if ($errors->has('color')) {{ $errors->first('color') }} @endif
@endforeach
box_shadow) ? 'checked' : '' }}>
@if ($errors->has('box_shadow')) {{ @$errors->first('box_shadow') }} @endif
{{ Form::close() }}
@endsection @push('scripts') @include('backEnd.style.script') @endpush