@extends('layouts.' . $template_name) @section('own-content') {{-- se incluye el contenedor sidebar y subheader --}} @include('shared.commons.container-sidebar-subheader', ['windows_side' => true, 'page_subheader_list' => true]) {{-- content page --}}

@lang('restaurant_owner.title_page')

{{-- section1 --}} @foreach (__('restaurant_owner.texts_section1') as $key => $text)

{{ $text }}

@endforeach
    @foreach (__('restaurant_owner.ul_section1') as $key => $text)
  • {{ $text }}
  • @endforeach
{{-- section2 --}}

@lang('restaurant_owner.texts_section2.p_one')

{{-- section_form --}}

@lang('restaurant_owner.title_section_form')

@lang('restaurant_owner.texts_section_form.p_one')

{!! Form::open([ 'url' => route('support'), 'method' => 'post', 'id' => 'smart-form', ]) !!} {{ Form::hidden('is_resto_owner', true) }} {{ Form::hidden('email_support', $restaurant_template->email_support) }} {{ Form::hidden('color_theme', $template_config->template->color) }}
{!! Form::close() !!}
@stop @section('extra-head') @parent {{ Html::style('css/reload-captcha.css', [], $isSSL) }} @endsection @section('extra-scripts') @parent {!! Html::script('js/reload-captcha.js', [], Request::secure()) !!} {!! Html::script('js/restaurants-owner.js', [], Request::secure()) !!} @endsection