@extends('admin/public/layout') @section('title')添加专家认证信息@endsection @section('content')

添加专家认证信息

{{ csrf_field() }}
@if($errors->has('user_id'))

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

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

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

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

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

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

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

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

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

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

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

@endif
(禁用后前台不会显示)
     
(推荐后会按照推荐时间显示到首页)
@foreach( trans_common_bool('all') as $key => $name )    @endforeach
@endsection @section('script') @endsection