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

{{ $pagina }}

{!! Form::open(array('url' => URL::to("/painel/principal/info/gravar"),'method'=>'post', 'id'=>'form-site-info', 'class'=>"form form-site-info",'files'=> true)) !!}
{!! Form::tel('telefone', $field['telefone'], array('class'=>'form-control', 'id' => 'telefone')) !!}
{!! Form::tel('whatsapp', $field['whatsapp'], array('class'=>'form-control', 'id' => 'whatsapp')) !!}
{!! Form::email('email', $field['email'], array('class'=>'form-control', 'id' => 'email')) !!}
{!! Form::text('endereco', $field['endereco'], array('class'=>'form-control', 'id' => 'endereco')) !!}
{!! Form::text('google_maps', $field['google_maps'], array('class'=>'form-control', 'id' => 'google_maps')) !!}
{!! Form::text('facebook', $field['facebook'], array('class'=>'form-control', 'id' => 'facebook')) !!}
{!! Form::text('linkedin', $field['linkedin'], array('class'=>'form-control', 'id' => 'linkedin')) !!}
{!! Form::text('pinterest', $field['pinterest'], array('class'=>'form-control', 'id' => 'pinterest')) !!}
{!! Form::text('instagram', $field['instagram'], array('class'=>'form-control', 'id' => 'instagram')) !!}
{!! Form::text('twitter', $field['twitter'], array('class'=>'form-control', 'id' => 'twitter')) !!}
{!! Form::text('youtube', $field['youtube'], array('class'=>'form-control', 'id' => 'youtube')) !!}
{!! Form::textarea('google_tags', $field['google_tags'], array('class'=>'form-control', 'id' => 'google_tags')) !!}
{!! Form::submit('Salvar',array('class'=>'btn btn-default')) !!} {!! Form::close() !!}
@stop