package installer
This commit is contained in:
36
resources/views/vendor/installer/environment-calssic.blade.php
vendored
Normal file
36
resources/views/vendor/installer/environment-calssic.blade.php
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
@extends('vendor.installer.layouts.master')
|
||||
|
||||
@section('template_title')
|
||||
{{ trans('installer_messages.environment.classic.templateTitle') }}
|
||||
@endsection
|
||||
|
||||
@section('title')
|
||||
<i class="fa fa-code fa-fw" aria-hidden="true"></i> {{ trans('installer_messages.environment.classic.title') }}
|
||||
@endsection
|
||||
|
||||
@section('container')
|
||||
<form method="post" action="{{ route('LaravelInstaller::environmentSaveClassic') }}">
|
||||
{!! csrf_field() !!}
|
||||
<textarea class="textarea" name="envConfig">{{ $envConfig }}</textarea>
|
||||
<div class="buttons buttons--right">
|
||||
<button class="button button--light" type="submit">
|
||||
<i class="fa fa-floppy-o fa-fw" aria-hidden="true"></i>
|
||||
{!! trans('installer_messages.environment.classic.save') !!}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@if (!isset($environment['errors']))
|
||||
<div class="buttons-container">
|
||||
<a class="button float-left" href="{{ route('LaravelInstaller::environmentWizard') }}">
|
||||
<i class="fa fa-sliders fa-fw" aria-hidden="true"></i>
|
||||
{!! trans('installer_messages.environment.classic.back') !!}
|
||||
</a>
|
||||
<a class="button float-right" href="{{ route('LaravelInstaller::database') }}">
|
||||
<i class="fa fa-check fa-fw" aria-hidden="true"></i>
|
||||
{!! trans('installer_messages.environment.classic.install') !!}
|
||||
<i class="fa fa-angle-double-right fa-fw" aria-hidden="true"></i>
|
||||
</a>
|
||||
</div>
|
||||
@endif
|
||||
@endsection
|
Reference in New Issue
Block a user