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.
		
		
		
		
		
			
		
			
				
					
					
						
							38 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							38 lines
						
					
					
						
							1.1 KiB
						
					
					
				
								@extends('breweries')
							 | 
						|
								
							 | 
						|
								@section('main')
							 | 
						|
								<div class="row">
							 | 
						|
								 <div class="col-sm-12">
							 | 
						|
								    <h1 class="display-3">Add a brewery</h1>
							 | 
						|
								  <div>
							 | 
						|
								    @if ($errors->any())
							 | 
						|
								      <div class="alert alert-danger">
							 | 
						|
								        <ul>
							 | 
						|
								            @foreach ($errors->all() as $error)
							 | 
						|
								              <li>{{ $error }}</li>
							 | 
						|
								            @endforeach
							 | 
						|
								        </ul>
							 | 
						|
								      </div><br />
							 | 
						|
								    @endif
							 | 
						|
								      <form method="post" action="{{ route('breweries.store') }}">
							 | 
						|
								          @csrf
							 | 
						|
								          <div class="form-group">
							 | 
						|
								              <label for="name">Name</label>
							 | 
						|
								              <input type="text" class="form-control" name="name"/>
							 | 
						|
								          </div>
							 | 
						|
								
							 | 
						|
								          <div class="form-group">
							 | 
						|
								              <label for="place">City/Region</label>
							 | 
						|
								              <input type="text" class="form-control" name="place"/>
							 | 
						|
								          </div>
							 | 
						|
								
							 | 
						|
								          <div class="form-group">
							 | 
						|
								              <label for="country">Country</label>
							 | 
						|
								              <input type="text" class="form-control" name="country"/>
							 | 
						|
								          </div>
							 | 
						|
								          <button type="submit" class="btn btn-primary">Add brewery</button>
							 | 
						|
								      </form>
							 | 
						|
								  </div>
							 | 
						|
								</div>
							 | 
						|
								</div>
							 | 
						|
								@endsection
							 |