@extends('common::layouts.master') @section('users_management') active @endsection @section('users_management_') aria-expanded="true" @endsection @section('u-show') show @endsection @section('user-create') active @endsection @section('modal') @include('gallery::image-gallery') @endsection @section('content')
{!! Form::open(['route' => 'user-store','method' => 'post', 'enctype'=>'multipart/form-data']) !!} @csrf

{{ __('add_user') }}

@if(session('error'))
{{session('error')}}
@endif @if(session('success'))
{{session('success')}}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
image
{{ Form::close() }}
@endsection