@extends('layouts.admin') @section('title','GIMS') @section('content')
Foundation Edit Form
{{ Form::open(['url'=>route('foundation.update',$foundation_detail->id), 'class'=>'form']) }} @method('put')
{{ Form::label('name','Foundation: ',['class'=>'col-sm-2']) }}
{{ Form::text('name',$foundation_detail->foundation_name, ['class'=>'form-control form-control-sm','required'=>true, 'id'=>'name_id','placeholder'=>'Enter Foundation Name...']) }}
{{ Form::button(" Reset",['class'=>'btn btn-danger', 'type'=>'reset']) }}
{{ Form::button(" Submit",['class'=>'btn button', 'type'=>'submit']) }}
{{ Form::close() }}
@endsection