{{-- * LaraClassifier - Classified Ads Web Application * Copyright (c) BeDigit. All Rights Reserved * * Website: https://laraclassifier.com * Author: Mayeul Akpovi (BeDigit - https://bedigit.com) * * LICENSE * ------- * This software is furnished under a license and may be used and copied * only in accordance with the terms of such license and with the inclusion * of the above copyright notice. If you Purchased from CodeCanyon, * Please read the full License from here - https://codecanyon.net/licenses/standard --}} @yield('title') @yield('before_styles') @yield('after_styles') @include('common.js.document')
@section('header') @include('install.layouts.inc.header') @show

{{ trans('messages.installer') }}

@include('install.layouts.inc._steps')
@include('common.spacer') @if (isset($errors) && $errors->any())
{{ t('validation_errors_title') }}
    @foreach ($errors->all() as $error)
  • {!! $error !!}
  • @endforeach
@endif @if (session()->has('flash_notification'))
@include('flash::message')
@endif
@yield('content')
@section('footer') @include('install.layouts.inc.footer') @show
@yield('before_scripts') @php $select2LangFilePath = 'assets/plugins/select2/js/i18n/' . config('app.locale') . '.js'; @endphp @if (file_exists(public_path($select2LangFilePath))) @endif @yield('after_scripts')