@extends('backend.layouts.app')
@section('content')
{!! Html::style('expand/jquery-ui.css') !!}
{!! Html::script('expand/jquery-1.10.2.js') !!}
{!! Html::script('expand/jquery-ui.js') !!}
{!! Html::script('expand/js/jquery.validate.min.js') !!}
@if(Session::has('error_message'))
{{ Session::get('error_message')}}
@endif
@if(Session::has('message'))
{{ Session::get('message')}}
@endif
{!! Html::style('expand/dataTables.bootstrap.css') !!}
{!! Html::script('expand/jquery.dataTables.min.js') !!}
{!! Html::script('expand/dataTables.bootstrap.min.js') !!}
@if (count($errors) > 0)
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! Form::open(array('url' => 'admin/tution_bill_methods/update', 'class' => 'form-horizontal edit_form', 'files' => true )) !!}
{!! Form::close() !!}
@stop