@extends('admin.app') @section('page_title','Edit Degree') @section('page_location') @endsection @section('main-content')

Edit Degree

{{ Form::model($degree,['route' => ['degree.update' , $degree->id ],'method' => 'PUT'] ) }}
{!! Form::label('Name') !!} {!! Form::text('name', null, array('required', 'class'=>'form-control', 'placeholder'=>'Name')) !!}
{!! Form::label('Slug') !!} {!! Form::text('slug', null, array('required', 'class'=>'form-control', 'placeholder'=>'Slug')) !!}
{!! Html::linkRoute('degree.show','Cancel',array($degree->id),array('class' => 'btn btn-primary' )) !!} {!! Form::submit('Save Changes', array('class'=>'btn btn-primary')) !!}
{!! Form::close() !!}
@endsection