@extends('layouts.master') @section('content')
Back to Dashboard
Add Supplier Area
@csrf
@if(Session::has('success'))

{{ Session('success') }}

@endif @if(Session::has('error'))

{{ Session('error') }}

@endif
Area Name:
Supplier Areas
@foreach($areas as $area) @endforeach
Code Name Country City Specific Location Action
{{ $area->code }} {{ $area->name }} {{ $area->country }} {{ $area->city }} {{ $area->specific_location }}
@endsection