@extends('layouts.theme') @section('title','Create Company') @section('style') @endsection @section('content')
Add Tender
@include('alertsInfo')
@csrf
@if ($errors->has('stage'))
{{ $errors->first('stage') }}
@endif
@foreach ($columns as $column)
@if ($errors->has($column))
{{ $errors->first($column) }}
@endif
@endforeach

@include('tender/create/technical')
@include('tender/create/financial')
@endsection @section('script') @endsection