@extends('install.install-layout') @section('content')
@include('install.navigation') @include('errors.errors') {!! Form::open(array('route' => ['install.requirements'], 'method' => 'POST', 'name'=>'registrationForm ', 'novalidate'=>'', 'class'=>"loginform", 'id'=>"install_form")) !!}
Requirement Status
PHP Version >= 7.1.3 @if (version_compare(phpversion(), '7.1.3', '>=')) @else @endif
.env Writable @if ( is_writable( base_path() . '/.env' ) ) @else @endif
PDO PHP Extension @if(extension_loaded('PDO')) @else @endif
libxml PHP Extension @if(extension_loaded('libxml')) @else @endif
Ctype PHP Extension @if(extension_loaded('Ctype')) @else @endif
JSON PHP Extension @if(extension_loaded('JSON')) @else @endif
BCMath PHP Extension @if(extension_loaded('BCMath')) @else @endif
max_execution_time @if(ini_get('max_execution_time')) @else @endif
Tokenizer PHP Extension @if(extension_loaded('tokenizer')) @else @endif
XML PHP Extension @if(extension_loaded('xml')) @else @endif
GD Library @if(extension_loaded('gd')) @else @endif
fileinfo @if(extension_loaded('fileinfo')) @else @endif
OpenSSL PHP Extension @if (extension_loaded('openssl')) @else @endif
Mbstring PHP Extension @if(extension_loaded('mbstring')) @else @endif
@if($isInstallable)
Instructions  
@else

Note: Please install/enable the above requirements to continue...

@endif {!! Form::close() !!} @stop @section('footer_scripts') @stop