@extends('layouts.app') @section('title', __('system.themes.menu')) @section('content')

{{ __('system.themes.menu') }}

@foreach ($themes as $theme)
{{ $theme['name'] }}
@if (strtolower($theme['name']) == strtolower($restaurant->theme ?? current($themes)['name'])) {{ __('system.crud.default') }} {{ __('system.crud.preview') }} @else {!! Form::open(['method' => 'put', 'route' => ['restaurant.themes.update']]) !!} {{ __('system.crud.preview') }} {!! Form::close() !!} @endif
Card image
@endforeach
@endsection