@php $disabled = isset($disabled) ? 'disabled' : '' @endphp
@php $width = isset($width) ? $width : '40%' @endphp
@php $postUrl = isset($postUrl) ? $postUrl : URL::full() @endphp
{!! Form::open(['files'=>true, 'method' => 'POST' ,'url' => $postUrl]) !!}
{!! Form::submit('Delete',['name' => 'imageDelete', 'class' => 'btn btn-danger', $disabled]) !!}
{!! Form::submit('Upload Picture',['name' => 'imageSave', 'class' => 'btn btn-success', $disabled]) !!}
{!! Form::close() !!}