@extends('layouts.admin') @section('title','GIMS') @section('content')
Thromde Village Edit Form
{{ Form::open(['url'=>route('thromdevillage.update', $thromdevillage->id), 'class'=>'form']) }} @method('put')
{{ Form::label('thromde_village_name','Thromde Village Name: ',['class'=>'col-sm-3']) }}
{{ Form::text('thromde_village_name',@$thromdevillage->thromde_village_name, ['class'=>'form-control form-control-sm','required'=>true, 'id'=>'name_id']) }}
{{ Form::button(" Reset",['class'=>'btn btn-danger', 'type'=>'reset']) }} {{ Form::button(" Submit",['class'=>'btn btn-success', 'type'=>'submit']) }}
{{ Form::close() }}
@endsection