@extends("template.master") @section("section_content")

Data Setting

{!! Form::open(array('action' => 'SettingController@store','files'=>'true')) !!} {!! csrf_field() !!}

Setting Web


{!! Form::label('nama_web', 'Nama Web') !!} {!! Form::text('nama_web',$setting->nama_web, array('class' => 'form-control')) !!} {{ $errors->first('nama_web') }}
{!! Form::label('logo', 'Logo') !!} {!! Form::file('logo') !!} {{ $errors->first('logo') }}
{!! Form::label('icon', 'icon') !!} {!! Form::file('icon') !!} {{ $errors->first('icon') }}
{!! Form::label('moto', 'Moto Sekolah') !!} {!! Form::text('moto',$setting->moto, array('class' => 'form-control')) !!} {{ $errors->first('moto') }}
{!! Form::label('alamat', 'Alamat Sekolah') !!} {!! Form::textarea('alamat',$setting->alamat, array('class' => 'form-control')) !!} {{ $errors->first('alamat') }}
{!! Form::label('telpon', 'Telpon Sekolah') !!} {!! Form::text('telpon',$setting->telpon, array('class' => 'form-control')) !!} {{ $errors->first('telpon') }}
{!! Form::label('email', 'Email Sekolah') !!} {!! Form::text('email',$setting->email, array('class' => 'form-control')) !!} {{ $errors->first('email') }}
{!! Form::label('nip_kepala_sekolah', 'NIP Kepala Sekolah Sekolah') !!} {!! Form::text('nip_kepala_sekolah',$setting->nip_kepala_sekolah, array('class' => 'form-control')) !!} {{ $errors->first('nip_kepala_sekolah') }}
{!! Form::label('nama_kepala_sekolah', 'Nama Kepala Sekolah Sekolah') !!} {!! Form::text('nama_kepala_sekolah',$setting->nama_kepala_sekolah, array('class' => 'form-control')) !!} {{ $errors->first('nama_kepala_sekolah') }}
{!! Form::label('banner_page', 'Banner Halaman') !!} {!! Form::file('banner_page') !!} {{ $errors->first('banner_page') }}

Setting Perpustakaan


{!! Form::label('denda', 'Denda Perpus') !!} {!! Form::text('denda',$setting->denda, array('class' => 'form-control')) !!} {{ $errors->first('denda') }}
{!! Form::label('bg_kartu', 'Background Kartu Perpus') !!} {!! Form::file('bg_kartu') !!} {{ $errors->first('bg_kartu') }}
{!! Form::label('text_kartu', 'Text Belakang Kartu') !!} {!! Form::textarea('text_kartu',$setting->text_kartu, array('class' => 'form-control','id'=>'editor1')) !!} {{ $errors->first('text_kartu') }}

Setting Sosial Media


{!! Form::label('fb', 'Link Facebook') !!} {!! Form::text('fb',$setting->fb, array('class' => 'form-control')) !!} {{ $errors->first('fb') }}
{!! Form::label('twitter', 'Link Twitter') !!} {!! Form::text('twitter',$setting->twitter, array('class' => 'form-control')) !!} {{ $errors->first('twitter') }}
{!! Form::label('google_plus', 'Link Google+') !!} {!! Form::text('google_plus',$setting->google_plus, array('class' => 'form-control')) !!} {{ $errors->first('google_plus') }}
{!! Form::label('linkedin', 'Link Linkedin') !!} {!! Form::text('linkedin',$setting->linkedin, array('class' => 'form-control')) !!} {{ $errors->first('linkedin') }}

Setting PPDB


{!! Form::label('persyaratan_psb', 'Persyaratan PPDB') !!} {!! Form::textarea('persyaratan_psb',$setting->persyaratan_psb, array('class' => 'form-control','id'=>'editor2')) !!} {{ $errors->first('persyaratan_psb') }}
{!! Form::text('buka_psb',$buka_psb, array('class' => 'form-control pull-right','id'=>'datepicker')) !!}
{!! Form::text('tutup_psb',$tutup_psb, array('class' => 'form-control pull-right','id'=>'datepicker1')) !!}
{!! Form::submit('Simpan', array('class' => 'btn btn-primary'))!!} {!! Form::close() !!}
@endsection