@extends('layouts.admin') @section('title', 'Payment Type') @section('content') Payment Type Payment Type Create Edit Payment Type {{ Html::ul($errors->all()) }} {{ Form::model($data, array('route' => array('payment_types.update', $data->id), 'method' => 'PUT')) }} Name {{ Form::text('name', $data->name, array('id'=>'exampleInputEmail1','class' => 'form-control','placeholder' => 'Enter name')) }} Status status=='1') checked @endif value="1"> Active status=='0') checked @endif value="0"> Inactive {{ Form::close() }} @endsection