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

{{ __('QR_Code_Builder') }}

@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