@extends('layouts.admin_app') @section('title', 'Create a Location') @section('content')

Create New Location

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ csrf_field() }} @include ('admin.locations.form', [ 'location' => null, ])
@endsection