����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.17.156.114 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirm.gltechlimited.com/resources/views/admin/user/ |
Upload File : |
@extends('layouts.admin') @section('content') <!-- Page content area start --> <div class="page-content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="form-horizontal__item bg-style"> <div class="item-top mb-30"> <h2>{{__('Add User')}}</h2> </div> <form action="{{route('user.store')}}" method="post" enctype="multipart/form-data"> @csrf <div class="custom-form-group mb-3 row"> <label for="name" class="col-lg-3 text-lg-right text-black"> {{__('Name')}} </label> <div class="col-lg-9"> <input type="text" name="name" id="name" value="{{old('name')}}" class="form-control flat-input" placeholder=" {{__('Name')}} "> @if ($errors->has('name')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('name') }}</span> @endif </div> </div> <div class="custom-form-group mb-3 row"> <label for="email" class="col-lg-3 text-lg-right text-black"> {{__('Email')}} </label> <div class="col-lg-9"> <input type="email" name="email" id="email" value="{{old('email')}}" class="form-control flat-input" placeholder=" {{__('Email')}} "> @if ($errors->has('email')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('email') }}</span> @endif </div> </div> <div class="custom-form-group mb-3 row"> <label class="col-lg-3 text-lg-right text-black">{{ __('Area Code') }}</label> <div class="col-lg-9"> <div class="input__group"> <select class="form-control" name="area_code"> <option value>{{ __("Select Code") }}</option> @foreach ($countries as $country) <option value="{{ $country->phonecode }}" @if(old('area_code')==$country-> phonecode) selected @endif>{{ $country->short_name.'('.$country->phonecode.')' }}</option> @endforeach </select> </div> @if ($errors->has('area_code')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('area_code') }}</span> @endif </div> </div> <div class="custom-form-group mb-3 row"> <label for="phone_number" class="col-lg-3 text-lg-right text-black"> {{__('Phone')}} </label> <div class="col-lg-9"> <input type="text" name="phone_number" id="phone_number" value="{{old('phone_number')}}" class="form-control flat-input" placeholder=" {{__('Phone')}} "> @if ($errors->has('phone_number')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('phone_number') }}</span> @endif </div> </div> <div class="custom-form-group mb-3 row"> <label for="address" class="col-lg-3 text-lg-right text-black"> {{__('Address')}} </label> <div class="col-lg-9"> <textarea name="address" id="address" class="form-control" placeholder="Address">{{old('address')}}</textarea> @if ($errors->has('address')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('address') }}</span> @endif </div> </div> <div class="custom-form-group mb-3 row"> <label for="role_name" class="col-lg-3 text-lg-right text-black"> {{__('Select Role')}} </label> <div class="col-lg-9"> <select name="role_name" id="role_name" class="form-control"> <option value="">{{__('Select Role')}}</option> @foreach($roles as $role) <option value="{{$role->name}}" {{old('role_name')==$role->name ? 'selected' : '' }} >{{$role->name}}</option> @endforeach </select> @if ($errors->has('role_name')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('role_name') }}</span> @endif </div> </div> <div class="custom-form-group mb-3 row"> <label for="password" class="col-lg-3 text-lg-right text-black"> {{__('Password')}} </label> <div class="col-lg-9"> <input type="password" name="password" id="password" class="form-control flat-input" placeholder=" {{__('Password')}} "> @if ($errors->has('password')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('password') }}</span> @endif </div> </div> <div class="mb-3"> <div class="col-md-12 text-right"> @saveWithAnotherButton </div> </div> </form> </div> </div> </div> </div> </div> <!-- Page content area end --> @endsection