@extends('layouts.admin.master') @section('content')

Buat Akun Member

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('nama_perusahaan')) {{ $errors->first('nama_perusahaan') }} @endif
@if ($errors->has('bidang_perusahaan')) {{ $errors->first('bidang_perusahaan') }} @endif
@if ($errors->has('no_telp')) {{ $errors->first('no_telp') }} @endif
@if ($errors->has('alamat')) {{ $errors->first('alamat') }} @endif
@if ($errors->has('location_id')) {{ $errors->first('location_id') }} @endif
Kembali
@endsection