@extends('user.layout') @section('styles') @endsection @section('content')

{{__('Qr Code Generator')}}

@csrf
@php $qrUrl = !empty($abs->qr_url) ? $abs->qr_url : url(Auth::user()->username); @endphp

{{__('QR Code will be generated for this URL')}}

@php if(empty($abs->qr_color)) { $qrColor = '000000'; } else { $qrColor = $abs->qr_color; } @endphp

{{__('If the QR Code cannot be scanned, then choose a darker color')}}

{{$abs->qr_size}}
{{$abs->qr_margin}}
...
{{$abs->qr_inserted_image_size}}

{{__('If the QR Code cannot be scanned, then reduce this size')}}

{{$abs->qr_inserted_image_x}}
{{$abs->qr_inserted_image_y}}
@php if (empty($abs->qr_text_color)) { $qrTextColor = '000000'; } else { $qrTextColor = $abs->qr_text_color; } @endphp
{{$abs->qr_text_size}}

{{__('If the QR Code cannot be scanned, then reduce this size')}}

{{$abs->qr_text_x}}
{{$abs->qr_text_y}}

{{__('Preview')}}

@endsection @section('scripts') @endsection