@section('site_title', formatTitle([__('QR generator'), __('Tool'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['url' => route('tools'), 'title' => __('Tools')], ['title' => __('Tool')], ]])

{{ __('QR generator') }}

{{ __('QR generator') }}
@include('shared.message')
@csrf
@if ($errors->has('content')) {{ $errors->first('content') }} @endif
@if ($errors->has('size')) {{ $errors->first('size') }} @endif
@if(isset($result))
{{ __('Result') }}
{!! QrCode::encoding('UTF-8')->size($size)->margin(0)->generate($result); !!}
@endif