@extends('layouts.register-layout') @section('content') @include('layouts.partials.register-partial-1')
@csrf
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
@if ($errors->has('password_confirmation'))

{{ $errors->first('password_confirmation') }}

@endif
@if ($errors->has('nomor_ponsel'))

{{ $errors->first('nomor_ponsel') }}

@endif
@if ($errors->has('nama_usaha'))

{{ $errors->first('nama_usaha') }}

@endif
@if ($errors->has('jenis_usaha'))

{{ $errors->first('jenis_usaha') }}

@endif

Atau

@endsection