@extends('layouts.container') @section('title', 'Nama Fellowship') @section('title_description', 'Add New') @section('css') @stop @section('body-class', 'skin-green') @section('content') @if ($errors->any())
@endif {{ Form::open(array('route' => 'namafellowship-create-data','role' => 'form','method' => 'PUT')) }}
{{ Form::label('kode_nama_fellowship', 'Kode Nama Fellowship') }} {{ Form::text('kode_nama_fellowship', old('kode_nama_fellowship'), array('class' => 'form-control')) }}
{{ Form::label('kode_sertifikat', 'Kode Sertifikat') }} {{ Form::text('kode_sertifikat', old('kode_sertifikat'), array('class' => 'form-control')) }}
{{ Form::label('nama_fellowship', 'Nama Fellowship') }} {{ Form::text('nama_fellowship', old('nama_fellowship'), array('class' => 'form-control')) }}
{{ Form::label('nama_fellowship_english', 'Nama Fellowship (Dalam Bahasa Inggris)') }} {{ Form::text('nama_fellowship_english', old('nama_fellowship_english'), array('class' => 'form-control')) }}
{{ Form::label('status_aktivasi', 'Status Aktivasi') }} {{ Form::select('status_aktivasi', $tipe, '1', array('class' => 'form-control')) }}
{{ Form::submit('Create', array('class' => 'btn btn-success')) }} {{ Form::close() }} @stop @section('js') @stop