@extends('admin.layouts.index') @section('title', 'Halaman Admin SI PeSSUT') @section('judul', 'User Data') @section('subjudul', 'Halaman User Data') @section('konten')
Tambah Data Admin
{!! csrf_field() !!}
@if ($errors->has('name')) {{ $errors->first('nama') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('group_id')) {{ $errors->first('group_id') }} @endif
{{ Form::select('opd_id', $opd, null, ['class' => 'form-control select2', 'placeholder' => 'Opd...', 'data-live-search' => 'true']) }} @if ($errors->has('opd_id')) {{ $errors->first('opd_id') }} @endif
{{ Form::select('sebagai', ['Op' => 'Operator', 'Ur' => 'Urusan', 'Pd' => 'Perangkat Dinas', 'Pt' => 'Petugas Lapangan'], null, ['class' => 'form-control select2', 'placeholder' => 'Sebagai...', 'data-live-search' => 'true']) }} @if ($errors->has('sebagai')) {{ $errors->first('sebagai') }} @endif

Kembali
@endsection @push('scripts') @endpush