Concierge Settings
{{ Form::open( array('url' => action('ConciergeController@add_concierge_settings'), 'method'=>'post', 'id' => 'searchForm','enctype' => 'multipart/form-data' )) }}
@if(Session::has('successMessage'))
{{ Form::close() }}
{!! html_entity_decode(session('successMessage')) !!}
@endif
@if(Session::has('dangerMessage') || count($errors))
{!! html_entity_decode(session('dangerMessage')) !!}
{{ $errors->first() }}
@endif
{{-- END ALERT BLOCK --}}
@if(isset($concierge->admin_profile_image))
@endif
{{ Form::submit('Save', ['class' => 'btn btn-primary', 'style' => 'width:14.5%; margin-top:10px;']) }}
{{ Form::close() }}