@extends('admin.layouts.layout-login') @section('content')
@include('admin.components.messages')
@csrf

Loan Officer Sign Up

@if ($errors->has('name')) {{ $errors->first('company_name') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('mmls')) {{ $errors->first('mmls') }} @endif
{{Form::select('country_id', $countries ,null , ['placeholder' => "Select Country", "class" => 'form-control' . ($errors->has('country_id') ? ' is-invalid' : '')])}} @if ($errors->has('name')) {{ $errors->first('country_id') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection