You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							16 lines
						
					
					
						
							435 B
						
					
					
				
			
		
		
	
	
							16 lines
						
					
					
						
							435 B
						
					
					
				@extends('errors.layout')
 | 
						|
 | 
						|
@php
 | 
						|
  $error_number = 400;
 | 
						|
@endphp
 | 
						|
 | 
						|
@section('title')
 | 
						|
  Bad request.
 | 
						|
@endsection
 | 
						|
 | 
						|
@section('description')
 | 
						|
  @php
 | 
						|
    $default_error_message = "Please <a href='javascript:history.back()''>go back</a> or return to <a href='".url('')."'>our homepage</a>.";
 | 
						|
  @endphp
 | 
						|
  {!! isset($exception)? ($exception->getMessage()?e($exception->getMessage()):$default_error_message): $default_error_message !!}
 | 
						|
@endsection
 | 
						|
 |