@extends('layouts.container')
@section('title', 'Tambahan Subspesialis')
@section('title_description')
Edit Tambahan Subspesialis: {{ $tambahanSubspesialis->tambahan_subspesialis }}
@stop
@section('css')
@stop
@section('body-class', 'skin-green')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{ Form::model($tambahanSubspesialis, array('route' => array('tambahansubspesialis-edit-data', $tambahanSubspesialis->id_data_tambahan_subspesialis), 'method' => 'PUT')) }}
{{ Form::label('kode_tambahan_subspesialis', 'Kode Tambahan Subspesialis') }}
{{ Form::text('kode_tambahan_subspesialis', $tambahanSubspesialis->kode_tambahan_subspesialis, array('class' => 'form-control')) }}
{{ Form::label('kode_sertifikat', 'Kode Tambahan Subspesialis') }}
{{ Form::text('kode_sertifikat', $tambahanSubspesialis->kode_sertifikat, array('class' => 'form-control')) }}
{{ Form::hidden('id_data_bidang_studi', null, array('class' => 'form-control')) }}
{{ Form::label('tambahan_subspesialis', 'Tambahan Subspesialis') }}
{{ Form::text('tambahan_subspesialis', $tambahanSubspesialis->tambahan_subspesialis, array('class' => 'form-control')) }}
{{ Form::label('tambahan_subspesialis_english', 'Tambahan Subspesialis (Dalam Bahasa Inggris)') }}
{{ Form::text('tambahan_subspesialis_english', $tambahanSubspesialis->tambahan_subspesialis_english, array('class' => 'form-control')) }}
{{ Form::label('status_aktivasi', 'Status Aktivasi') }}
{{ Form::select('status_aktivasi', $tipe, $tambahanSubspesialis->status_aktivasi, array('class' => 'form-control')) }}
{{ Form::submit('Edit', array('class' => 'btn btn-success')) }}
{{ Form::close() }}
@stop
@section('js')
@stop