@extends('layouts.dash')
@section('title') Village @stop
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->modelForm($village, 'PUT', url('villages/' . $village->id))->open() }}
@include("param.villages.content")
{{ html()->closeModelForm() }}
@stop
@section('scripts0')
@stop