@if(!isset($member))
<!-- Name Field -->
<div class="form-group col-sm-6">
{!! Form::label('full_name', 'NAME:') !!}
{!! Form::text('full_name', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Email Field -->
<div class="form-group col-sm-6">
{!! Form::label('email', 'Email',['class'=>' text-uppercase']) !!}
{!! Form::text('email', null, ['class' => 'form-control border-left-pink border-left-6 text-bold-600 black font-medium-2','autocomplete'=>'off']) !!}
</div>
<div class="form-group col-6">
{!! Form::label('password', 'Password',['class'=>' text-uppercase']) !!}
<div class="position-relative has-icon-right">
{!! Form::password('password', ['class' => 'form-control border-left-pink border-left-6 text-bold-600 black font-medium-2','autocomplete'=>'off']) !!}
<div class="form-control-position">
<i class="fa fa-eye font-medium-3 toggle-password" toggle="#password"></i>
</div>
</div>
</div>
<div class="form-group col-6">
{!! Form::label('password_confirmation', 'Konfirmasi Password',['class'=>' text-uppercase']) !!}
<div class="position-relative has-icon-right">
{!! Form::password('password_confirmation', ['class' => 'form-control border-left-pink border-left-6 text-bold-600 black font-medium-2','autocomplete'=>'off']) !!}
<div class="form-control-position">
<i class="fa fa-eye font-medium-3 toggle-password" toggle="#password_confirmation"></i>
</div>
</div>
</div>
@endif
{{-- <div class="card bg-grey bg-lighten-4 rounded-2">
<div class="d-flex pt-1 pb-1">
{!! Form::label('s_role_id', 'Hak Akses Diberikan',['class' => 'col-md-3 label-control text-uppercase mb-0']) !!}
<div class="skin skin-flat">
@foreach($sRoles as $item)
<fieldset>
{!! Form::radio('s_role_id[]', $item->name, in_array($item->id, $roles)?true:false,['id'=>'input-'.$item->id]) !!}
<label for="input-{{$item->id}}" class="ml-1 text-bold-700 black text-uppercase">{!! $item->name !!} - {!! $item->desc !!}</label>
</fieldset>
@endforeach
</div>
</div>
</div> --}}
<!-- Foto Field -->
<div class="form-group col-sm-6">
{!! Form::label('foto', 'Foto Member :') !!}
<div class="position-relative">
{{-- <x-media-library-attachment multiple name="media" rules="mimes:png,jpeg"/> --}}
{{-- {{json_encode(!isset($post))}} --}}
@if(empty($member))
<x-media-library-attachment multiple name="media" rules="mimes:png,jpeg"/>
@else
<x-media-library-collection :model="$member" name="media" rules="mimes:png,jpeg"/>
@endif
</div>
</div>
<!-- Full Name Field -->
<div class="form-group col-sm-6">
{!! Form::label('full_name', 'Full Name:') !!}
{!! Form::text('full_name', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Title Field -->
<div class="form-group col-sm-6">
{!! Form::label('title', 'Title:') !!}
{!! Form::text('title', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Biodata Field -->
<div class="form-group col-sm-12 col-lg-12">
{!! Form::label('biodata', 'Biodata:') !!}
{!! Form::textarea('biodata', null, ['class' => 'form-control']) !!}
</div>
<!-- Birth Date Field -->
<div class="form-group col-sm-6">
{!! Form::label('birth_date', 'Birth Date:') !!}
{!! Form::date('birth_date', null, ['class' => 'form-control','id'=>'birth_date']) !!}
</div>
@push('page_scripts')
<script type="text/javascript">
$('#birth_date').datepicker()
</script>
@endpush
<!-- Birth Place Field -->
<div class="form-group col-sm-6">
{!! Form::label('birth_place', 'Birth Place:') !!}
{!! Form::text('birth_place', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Gender Field -->
<div class="form-group col-sm-6">
{!! Form::label('gender', 'Gender:') !!}
{!! Form::select('gender', ['L' => 'Laki-laki', 'P' => 'Perempuan'], null, ['class' => 'form-control', 'placeholder' => 'Pilih gender']) !!}
</div>
<!-- Address Field -->
<div class="form-group col-sm-12 col-lg-12">
{!! Form::label('address', 'Address:') !!}
{!! Form::textarea('address', null, ['class' => 'form-control']) !!}
</div>
<!-- Phone Number Field -->
<div class="form-group col-sm-6">
{!! Form::label('phone_number', 'Phone Number:') !!}
{!! Form::text('phone_number', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Facebook Field -->
<div class="form-group col-sm-6">
{!! Form::label('facebook', 'Facebook:') !!}
{!! Form::text('facebook', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Twitter Field -->
<div class="form-group col-sm-6">
{!! Form::label('twitter', 'Twitter:') !!}
{!! Form::text('twitter', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Whatsapp Field -->
<div class="form-group col-sm-6">
{!! Form::label('whatsapp', 'Whatsapp:') !!}
{!! Form::text('whatsapp', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Telegram Field -->
<div class="form-group col-sm-6">
{!! Form::label('telegram', 'Telegram:') !!}
{!! Form::text('telegram', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
<!-- Web Field -->
<div class="form-group col-sm-6">
{!! Form::label('web', 'Web:') !!}
{!! Form::text('web', null, ['class' => 'form-control', 'maxlength' => 255, 'maxlength' => 255]) !!}
</div>
{{-- <!-- Users Id Field -->
<div class="form-group col-sm-6">
{!! Form::label('users_id', 'Users Id:') !!}
{!! Form::number('users_id', null, ['class' => 'form-control', 'required']) !!}
</div> --}}
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]