@extends('admin.layouts.app') @section('title', 'Add New Student') @section('page.title')

Update Students

@endsection @section('breadcrumb') @endsection @section('content')
airline_seat_recline_normal

Update

{{ $student->name }}

{!! Form::model($student, ['method' => 'PUT', 'class'=>'form', 'route' => ['admin.students.update', $student->id ] ]) !!} @include('admin.students._form') {!! Form::submit('Update', ['class' => 'btn pmd-ripple-effect btn-primary']) !!} {!! Form::close() !!}
@endsection