| Server IP : 3.138.164.131 / Your IP : 216.73.216.136 Web Server : Apache System : Linux ns1.techtime.me 4.18.0-147.8.1.el8.lve.1.x86_64 #1 SMP Mon Jun 29 09:55:57 EDT 2020 x86_64 User : injazaat ( 1471) PHP Version : 8.1.20 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/injazaat/public_html/resources/views/admin/projects/ |
Upload File : |
@extends('admin.adminlayouts.adminlayout')
@section('contant')
<!-- Page Wrapper -->
<div class="page-wrapper">
<div class="content container-fluid">
<!-- Page Header -->
<div class="page-header">
<div class="row">
<div class="col-sm-12">
<span>
<h3 class="page-title">
<a href="{{route('show-projects')}}"> Project Managment </a>
> Create New Project Category
</h3>
</span>
</div>
</div>
</div>
<!-- /Page Header -->
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-body">
@if (count($errors) > 0)
<div class="alert alert-danger">
@foreach ($errors->all() as $e)
<p>{{ $e }}</p>
@endforeach
</div>
@endif
<form action="{{route('add-projects-process')}}" method="post" enctype="multipart/form-data">
@csrf
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label>title en</label>
<input type="text" name="title" value="{{ old('title') }}" class="form-control" >
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label>title ar</label>
<input type="text" name="title_ar" value="{{ old('title_ar') }}" class="form-control" >
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<label>Priority</label>
<input type="text" name="priority" value="{{ old('priority') }}" class="form-control" >
</div>
</div>
</div>
<div class="text-right mt-4">
<button type="submit" name="" class="btn btn-primary">Add </button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /Page Wrapper -->
@endsection