����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 52.14.150.165 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/bofirmacademy.com/resources/views/organization/instructor/ |
Upload File : |
@extends('layouts.organization') @section('breadcrumb') <div class="page-banner-content text-center"> <h3 class="page-banner-heading text-white pb-15"> {{ __('Add Instructor') }} </h3> <!-- Breadcrumb Start--> <nav aria-label="breadcrumb"> <ol class="breadcrumb justify-content-center"> <li class="breadcrumb-item font-14"><a href="{{ route('organization.dashboard') }}">{{ __('Dashboard') }}</a> </li> <li class="breadcrumb-item font-14 active" aria-current="page">{{ __('Add Instructor') }}</li> </ol> </nav> </div> @endsection @section('content') <div class="instructor-profile-right-part"> <form method="POST" action="{{ route('organization.instructor.store') }}" enctype="multipart/form-data" autocomplete="off"> @csrf <div class="instructor-profile-info-box"> <div class="instructor-my-courses-title d-flex justify-content-between align-items-center"> <h6>{{ __('Personal Info') }}</h6> </div> <div class="row"> <div class="col-md-4 mb-30"> <div class="upload-img-box mt-3 height-200"> <img src=""> <input type="file" name="image" id="image" accept="image/*" onchange="previewFile(this)"> <div class="upload-img-box-icon"> <i class="fa fa-camera"></i> <p class="m-0">{{ __('Image') }}</p> </div> </div> @if ($errors->has('image')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('image') }}</span> @endif <div class="author-info"> <p class="font-14">{{ __('Accepted Image Files') }}: JPEG, JPG, PNG <br> {{ __('Accepted Size') }}: 300 x 300 (1MB)</p> </div> </div> </div> <div class="row"> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('First Name') }} <span class="text-danger">*</span></label> <input type="text" name="first_name" value="{{ old('first_name') }}" placeholder="{{ __('First Name') }}" class="form-control" required> @if ($errors->has('first_name')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('first_name') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Last Name') }} <span class="text-danger">*</span></label> <input type="text" name="last_name" value="{{ old('last_name') }}" placeholder="{{ __('Last Name') }}" class="form-control" required> @if ($errors->has('last_name')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('last_name') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Email') }} <span class="text-danger">*</span></label> <input type="email" name="email" value="{{ old('email') }}" placeholder="{{ __('Email') }}" class="form-control" required> @if ($errors->has('email')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('email') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Password') }} <span class="text-danger">*</span></label> <input type="password" name="password" value="{{ old('password') }}" placeholder="{{ __('Password') }}" class="form-control" required> @if ($errors->has('password')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('password') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Professional Title') }} <span class="text-danger">*</span></label> <input type="text" name="professional_title" value="{{ old('professional_title') }}" placeholder="{{ __('Professional Title') }}" class="form-control" required> @if ($errors->has('professional_title')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('professional_title') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="label-text-title color-heading font-medium font-16 mb-3">{{ __('Area Code') }} <span class="text-danger">*</span></label> <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> @if ($errors->has('area_code')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('area_code') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Phone Number') }}<span class="text-danger">*</span></label> <input type="text" name="phone_number" value="{{ old('phone_number') }}" placeholder="{{ __('Phone Number') }}" class="form-control"> @if ($errors->has('phone_number')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('phone_number') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Country') }}</label> <select name="country_id" id="country_id" class="form-select"> <option value="">{{ __('Select Country') }}</option> @foreach ($countries as $country) <option value="{{ $country->id }}" @if (old('country_id')) {{ old('country_id') == $country->id ? 'selected' : '' }} @endif> {{ $country->country_name }}</option> @endforeach </select> </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('State') }}</label> <select name="state_id" id="state_id" class="form-select"> <option value="">{{ __('Select State') }}</option> @if (old('country_id')) @foreach ($states as $state) <option value="{{ $state->id }}" {{ old('state_id') == $state->id ? 'selected' : '' }}>{{ $state->name }} </option> @endforeach @endif </select> </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('City') }}</label> <select name="city_id" id="city_id" class="form-select"> <option value="">{{ __('Select City') }}</option> @if (old('state_id')) @foreach ($cities as $city) <option value="{{ $city->id }}" {{ old('city_id') == $city->id ? 'selected' : '' }}>{{ $city->name }}</option> @endforeach @endif </select> </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Address') }} <span class="text-danger">*</span></label> <input type="text" name="address" value="{{ old('address') }}" placeholder="{{ __('Address') }}" class="form-control" required> @if ($errors->has('address')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('address') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Postal Code') }} <span class="text-danger">*</span></label> <input type="text" name="postal_code" value="{{ old('postal_code') }}" placeholder="{{ __('Postal Code') }}" class="form-control" required> @if ($errors->has('postal_code')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('postal_code') }}</span> @endif </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Gender') }}<span class="text-danger">*</span></label> <select name="gender" id="gender" class="form-select" required> <option value="Male" {{ old('gender') == 'Male' ? 'selected' : '' }}>{{ __('Male') }} </option> <option value="Female" {{ old('gender') == 'Female' ? 'selected' : '' }}> {{ __('Female') }}</option> <option value="Others" {{ old('gender') == 'Others' ? 'selected' : '' }}> {{ __('Others') }}</option> </select> </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Facebook') }} </label> <input type="text" name="social_link[facebook]" value="{{ old("social_link")['facebook'] ?? '' }}" placeholder="https://facebook.com" class="form-control"> </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Twitter') }}</label> <input type="text" name="social_link[twitter]" value="{{ old("social_link")['twitter'] ?? '' }}" class="form-control" placeholder="https://twitter.com"> </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Linkedin') }}</label> <input type="text" name="social_link[linkedin]" value="{{ old("social_link")['linkedin'] ?? '' }}" class="form-control" placeholder="https://linkedin.com"> </div> <div class="col-md-6 mb-30"> <label class="font-medium font-15 color-heading">{{ __('Pinterest') }}</label> <input type="text" name="social_link[pinterest]" value="{{ old("social_link")['pinterest'] ?? '' }}" class="form-control" placeholder="https://pinterest.com"> </div> <div class="col-md-12"> <label class="font-medium font-15 color-heading">{{ __('About Instructor') }} <span class="text-danger">*</span></label> <textarea name="about_me" id="" cols="15" rows="5" class="form-control" required>{{ old('about_me') }}</textarea> @if ($errors->has('about_me')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('about_me') }}</span> @endif </div> </div> </div> <div class="col-12"> <button type="submit" class="theme-btn theme-button1 theme-button3 font-15 fw-bold">{{ __('Save') }}</button> </div> </form> </div> @endsection @push('style') <link rel="stylesheet" href="{{ asset('frontend/assets/css/custom/img-view.css') }}"> @endpush @push('script') <script src="{{ asset('frontend/assets/js/custom/organization.js') }}"></script> <script src="{{ asset('frontend/assets/js/custom/img-view.js') }}"></script> @endpush