@extends('layouts.backend') @section('content') Add Organiser Home My profile @if(session()->has('message')) {{ session()->get('message') }} @endif Organiser detail @csrf {{ __('Name')}} @if ($errors->has('name')) {{ $errors->first('name') }} @endif {{ __('Email')}} @if ($errors->has('email')) {{ $errors->first('email') }} @endif {{__('Company')}} @if ($errors->has('company')) {{ $errors->first('company') }} @endif {{__('Country')}} Select Country @foreach($countries as $country) id == old('country')) ? 'selected' : '' }} >{{$country->country_name}} @endforeach @if ($errors->has('country')) {{ $errors->first('country') }} @endif {{__('Address 1')}} @if ($errors->has('address')) {{ $errors->first('address') }} @endif {{__('Address 2')}} @if ($errors->has('address_2')) {{ $errors->first('address_2') }} @endif {{__('Zip Code')}} @if ($errors->has('zipcode')) {{ $errors->first('zipcode') }} @endif @endsection