@extends('layouts.container') @section('title', 'Tambahan Subspesialis') @section('title_description', 'Add New') @section('css') @stop @section('body-class', 'skin-green') @section('content') @if ($errors->any())
@endif {{ Form::open(array('route' => 'tambahansubspesialis-create-data','role' => 'form','method' => 'PUT')) }}
{{ Form::label('kode_tambahan_subspesialis', 'Kode Tambahan Subspesialis') }} {{ Form::text('kode_tambahan_subspesialis', old('kode_tambahan_subspesialis'), array('class' => 'form-control')) }}
{{ Form::label('kode_sertifikat', 'Kode Sertifikat') }} {{ Form::text('kode_sertifikat', old('kode_sertifikat'), array('class' => 'form-control')) }}
{{ Form::label('tambahan_subspesialis', 'Tambahan Subspesialis') }} {{ Form::text('tambahan_subspesialis', old('tambahan_subspesialis'), array('class' => 'form-control')) }}
{{ Form::label('tambahan_subspesialis_english', 'Tambahan Subspesialis (Dalam Bahasa Inggris)') }} {{ Form::text('tambahan_subspesialis_english', old('tambahan_subspesialis_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