@extends('layouts.main') @section('breadclumbs') @endsection @section('content')

{{ __('home.d_report_bug') }}

PHP:

@php echo phpversion(); @endphp

GD:
@if (in_array('gd', $extensions))

@else

@endif
OpenSSL:
@if (in_array('openssl', $extensions))

@else

@endif
Curl:
@if (in_array('curl', $extensions))

@else

@endif
GMP:
@if (in_array('gmp', $extensions))

@else

@endif
Intl:
@if (in_array('intl', $extensions))

@else

@endif
{{ Form::open(['url' => route('send_bug'), 'style'=>'display:inline']) }}
{{ Form::bsText('summary') }} {{ Form::bsTextArea('description', null, null, ['rows' => 3]) }}
{{ Form::submit(__('main.send'), ['class' => 'btn btn-success']) }}
{{ Form::close() }}
@endsection