@extends('layouts.container')
@section('title', 'Nama Fellowship')
@section('title_description')
Edit Fellowship: {{ $namaFellowship->nama_fellowship }}
@stop
@section('css')
@stop
@section('body-class', 'skin-green')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{ Form::model($namaFellowship, array('route' => array('namafellowship-edit-data', $namaFellowship->id_data_nama_fellowship), 'method' => 'PUT')) }}
{{ Form::label('kode_nama_fellowship', 'Kode Fellowship') }}
{{ Form::text('kode_nama_fellowship', $namaFellowship->kode_nama_fellowship, array('class' => 'form-control')) }}
{{ Form::label('kode_sertifikat', 'Kode Sertififikat') }}
{{ Form::text('kode_sertifikat', $namaFellowship->kode_sertifikat, array('class' => 'form-control')) }}
{{ Form::hidden('id_data_nama_fellowship', null, array('class' => 'form-control')) }}
{{ Form::label('nama_fellowship', 'Nama Fellowship') }}
{{ Form::text('nama_fellowship', $namaFellowship->nama_fellowship, array('class' => 'form-control')) }}
{{ Form::label('nama_fellowship_english', 'Nama Fellowship (Dalam Bahasa Inggris)') }}
{{ Form::text('nama_fellowship_english', $namaFellowship->nama_fellowship_english, array('class' => 'form-control')) }}
{{ Form::label('status_aktivasi', 'Status Aktivasi') }}
{{ Form::select('status_aktivasi', $tipe, $namaFellowship->status_aktivasi, array('class' => 'form-control')) }}
{{ Form::submit('Edit', array('class' => 'btn btn-success')) }}
{{ Form::close() }}
@stop
@section('js')
@stop