@if(Session::has('errors'))
        
        
            
            Alert!
            
            
            @if($errors->first('status'))
            
{!! $errors->first('status', ':message') !!}
            @endif
            @if($errors->first('type'))
            {!! $errors->first('type', ':message') !!}
            @endif
            @if($errors->first('topic'))
            {!! $errors->first('topic', ':message') !!}
            @endif
            @if($errors->first('parent_topic'))
            {!! $errors->first('parent_topic', ':message') !!}
            @endif
            @if($errors->first('custom_form'))
            {!! $errors->first('custom_form', ':message') !!}
            @endif
            @if($errors->first('department'))
            {!! $errors->first('department', ':message') !!}
            @endif
            @if($errors->first('priority'))
            {!! $errors->first('priority', ':message') !!}
            @endif
            @if($errors->first('sla_plan'))
            {!! $errors->first('sla_plan', ':message') !!}
            @endif
            @if($errors->first('auto_assign'))
            {!! $errors->first('auto_assign', ':message') !!}
            @endif
        
        @endif