@extends('admin.layouts.app') @section('title', 'Region') @section('content')

{{ __('Region') }}

Edit Region

@csrf @method('PUT')
@include('admin.partials.form-errors', array('field' => 'name'))

Regions

@foreach($regions as $c) @endforeach
Name
{{$c->name}}
@endsection