@extends('layouts.master') @section('title', 'Locations') @section('content')
Add Location @if(Session::has('error'))
{{ Session::get('error') }}
@endif @if(Session::has('success'))
{{ Session::get('success') }}
@endif @if($locations) @foreach($locations as $location) @endforeach @endif
@endsection @section('pageJS') @endsection