@extends('layouts.default') @section('content')

{{ trans('labels.attach') }}

{{ $linked->link_desc }} {{ link_to($linked->link_url , '' , $attributes = array('class'=>'button-link-l' , 'download'=>$linked->link_name , 'style'=>"display:inline-block; height:16px; width:20px;") , $secure = null) }}

{{ link_to_route ( 'editLinked' , '' , array($linked->id) , array( 'class'=>'button-small upd' , 'alt'=>'upd' , 'title'=>'αλλαγή')) }} {{ link_to_route ( 'deleteLinked' , '' , array($linked->id) , array( 'class'=>'button-small del' , 'alt'=>'del' , 'title'=>'διαγραφή')) }}
{{ substr('00000'.$linked->id,-5) }}
{{ trans('labels.type') }} :
{{ Form::text('link_type', $linked->link_type,array('readonly')) }}
{{ trans('labels.url') }} :
{{ Form::text('link_url', $linked->link_url,array('readonly')) }}
{{ trans('labels.name') }} :
{{ Form::text('link_name', $linked->link_name) }}
{{ Form::hidden('id', $linked->id) }} @endsection