@extends('layouts.main') @section('content')
@csrf
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('confirm_password')) {{ $errors->first('confirm_password') }} @endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('exposure')) {{ $errors->first('exposure') }} @endif
@if ($errors->has('commission')) {{ $errors->first('commission') }} @endif
@endsection