@extends('layouts.admin') @section('title', 'Payment Type') @section('content')

Payment Type

Edit Payment Type

{{ Html::ul($errors->all()) }} {{ Form::model($data, array('route' => array('payment_types.update', $data->id), 'method' => 'PUT')) }}
{{ Form::text('name', $data->name, array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter name')) }}
status=='1') checked @endif value="1"> Active status=='0') checked @endif value="0"> Inactive
{{ Form::close() }}
@endsection