@extends('layouts.app') @section('content')

{!! __('edit_region') !!}

{!! Form::model($result, ['route' => ['region.update', $result->id], 'method' => 'patch', 'id' => 'ajax-submit']) !!}
{!! Form::label('country_id', __('country')) !!} {!! Form::select('country_id', $country, null, ['class' => 'form-control select2']) !!}
{!! Form::label('name', __('name')) !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'eg: Australia']) !!}
{!! Form::label('status', 'Status') !!} {!! Form::select('status', status(), null, ['class' => 'form-control select2']) !!}
{!! Form::close() !!}


@endsection