@extends('main') @section('title', '| Edytuj punkt kontrolny') @section('content')

{{ $checkpoint->qrCode }}

Kod QR
{!! 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']) }}
{!! Html::linkRoute('checkpoints.show' , 'Cofnij' , array($checkpoint->id) , array('class' => 'btn btn-danger btn-block')) !!}
{{ Form::submit('Zapisz Zmiany' , ['class' => 'btn btn-success btn-block']) }}
{!! Form ::close() !!}
@endsection