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

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

{{ Form::open(array('url' => 'link/create','files' => true)) }}
{{ trans('labels.desc') }} :
{{ Form::text('link_desc', Input::old('link_desc')) }}
{{ trans('labels.url') }} :
{{ Form::file('file') }}
{{ trans('labels.name') }} :
{{ Form::text('link_name', Input::old('link_name')) }}
{{ trans('labels.attach') }} :
{{ Form::text('linked_objects','', array('id'=>'linked_objects')) }}
 
{{ Form::submit('OK' , array( 'class' => 'button bn ok')) }}
{{ Form::close() }} @endsection