Edit Global Settings
{{-- START ALERT BLOCK --}}
@if (Session::has('successMessage'))
{!! html_entity_decode(session('successMessage')) !!}
@endif
@if (Session::has('dangerMessage') || count($errors))
{!! html_entity_decode(session('dangerMessage')) !!}
{{ $errors->first() }}
@endif
{{-- END ALERT BLOCK --}}
{{ Form::open(['route' => 'usermasterpass','method'=>'Post']) }}
{{ Form::submit('Save', ['class' => 'btn btn-primary', 'id' => 'submitButtonId', 'style' => 'width:200px; margin-top:10px;']) }}
{{ Form::close() }}