@extends('layout.app') @section('title','Users') @section('user','active') @section('content')
{{@csrf_field()}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{__('messages.user_page.image')}}
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@endsection @section('js') @endsection