@extends('main')
@section('title', '| Edytuj punkt kontrolny')
@section('content')
{{ $checkpoint->qrCode }}
- Kod QR
![](data:image/png;base64, {!! base64_encode(QrCode::format('png')->size(400)->generate($checkpoint->qrCode)) !!} )
{!! Form::model($checkpoint, ['route' => ['checkpoints.update' , $checkpoint->id] , 'method' => 'PUT']) !!}
{{ Form::label('shortDesc' , 'Krotki opis') }}
{{ Form::text('shortDesc' , null , ['class' => 'form-control', 'maxlength'=>'100']) }}
{{ Form::label('detailedDesc' , 'Dokładny opis' , ['class' => 'form-spacing-top']) }}
{{ Form::textarea('detailedDesc' , null , ['class' => 'form-control', 'maxlength' => '250' ,'size'=>'30x5']) }}
@endsection