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

Invoice Settings

Update Invoice Settings
@include('layouts.flash')
{!! Form::model($target, array('route' => array('invoice.update'), 'method' => 'PUT', 'class' => 'form-horizontal', 'id' => 'userId','files'=> true)) !!}
{!! Form::textarea('address', old('address'), array('id'=> 'address', 'class' => 'form-control fullEditor1')) !!} {!! $errors->first('address') !!}
{!! Form::textarea('notes', old('notes'), array('id'=> 'notes', 'rows' => '3', 'class' => 'form-control fullEditor2')) !!}
@if($target->authorized_signature != null)

@endif {!! Form::file('authorized_signature',old('authorized_signature'), array('id'=> 'authorized_signature', 'class' => 'form-control')) !!} {!! $errors->first('authorized_signature') !!}
{!! Form::textarea('footer_address', old('footer_address'), array('id'=> 'footer_address', 'rows' => '3', 'class' => 'form-control')) !!}
{!! Form::close() !!}
@stop @section('js') @endsection