@extends('layouts.master') @section('title', 'All States') @section('content')
Add State @if(Session::has('error'))
{{ Session::get('error') }}
@endif @if(Session::has('success'))
{{ Session::get('success') }}
@endif @if($states) @foreach($states as $state) @endforeach @endif
@endsection @section('pageJS') @endsection